1
0
mirror of https://github.com/octoleo/plantuml.git synced 2024-06-07 02:40:52 +00:00
plantuml/src/net/sourceforge/plantuml/classdiagram/ClassDiagram.java

168 lines
5.8 KiB
Java
Raw Normal View History

2010-11-15 20:35:36 +00:00
/* ========================================================================
* PlantUML : a free UML diagram generator
* ========================================================================
*
2022-03-07 19:33:46 +00:00
* (C) Copyright 2009-2023, Arnaud Roques
2010-11-15 20:35:36 +00:00
*
2016-03-06 16:47:34 +00:00
* Project Info: http://plantuml.com
2010-11-15 20:35:36 +00:00
*
2017-03-15 19:13:31 +00:00
* If you like this project or if you find it useful, you can support us at:
*
* http://plantuml.com/patreon (only 1$ per month!)
* http://plantuml.com/paypal
*
2010-11-15 20:35:36 +00:00
* This file is part of PlantUML.
*
* PlantUML is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* PlantUML distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
2013-12-10 19:36:50 +00:00
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
2010-11-15 20:35:36 +00:00
* License for more details.
*
* You should have received a copy of the GNU General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
* USA.
*
*
* Original Author: Arnaud Roques
*
*
*/
package net.sourceforge.plantuml.classdiagram;
2015-04-07 18:18:37 +00:00
import java.io.IOException;
import java.io.OutputStream;
2022-09-20 20:35:41 +00:00
import java.util.Map;
2015-04-07 18:18:37 +00:00
import net.sourceforge.plantuml.FileFormatOption;
2010-11-15 20:35:36 +00:00
import net.sourceforge.plantuml.UmlDiagramType;
import net.sourceforge.plantuml.baraye.EntityImp;
2015-04-07 18:18:37 +00:00
import net.sourceforge.plantuml.core.ImageData;
2021-05-23 15:35:13 +00:00
import net.sourceforge.plantuml.core.UmlSource;
2016-05-31 19:41:55 +00:00
import net.sourceforge.plantuml.cucadiagram.Link;
2015-04-07 18:18:37 +00:00
import net.sourceforge.plantuml.graphic.TextBlock;
2010-11-15 20:35:36 +00:00
import net.sourceforge.plantuml.objectdiagram.AbstractClassOrObjectDiagram;
2015-04-07 18:18:37 +00:00
import net.sourceforge.plantuml.svek.image.EntityImageClass;
2010-11-15 20:35:36 +00:00
public class ClassDiagram extends AbstractClassOrObjectDiagram {
2022-09-20 20:35:41 +00:00
public ClassDiagram(UmlSource source, Map<String, String> skinParam) {
2022-09-18 17:08:06 +00:00
super(source, UmlDiagramType.CLASS, skinParam);
2019-06-26 19:24:49 +00:00
}
// @Override
// protected ILeaf getOrCreateLeaf2(Quark ident, Quark code, LeafType type, USymbol symbol) {
// Objects.requireNonNull(ident);
// if (type == null) {
// code = code.eventuallyRemoveStartingAndEndingDoubleQuote("\"([:");
// if (code.getData() != null)
// return (ILeaf) code.getData();
// if (getNamespaceSeparator() == null)
// return reallyCreateLeaf(ident, Display.getWithNewlines(code.getName()), LeafType.CLASS, symbol);
// // return getOrCreateLeafDefault(ident, code.getName(), LeafType.CLASS, symbol);
//
// if (ident.getData() != null)
// return (ILeaf) ident.getData();
// final ILeaf result = reallyCreateLeaf(ident, Display.getWithNewlines(ident.getName()), LeafType.CLASS, symbol);
// this.lastEntity = (EntityImp) result;
// return result;
// }
// if (code.getData() != null)
// return (ILeaf) code.getData();
// if (getNamespaceSeparator() == null)
// return reallyCreateLeaf(ident, Display.getWithNewlines(code.getName()), type, symbol);
// // return getOrCreateLeafDefault(ident, code.getName(), type, symbol);
//
// final ILeaf result = reallyCreateLeaf(ident, Display.getWithNewlines(ident.getName()), type, symbol);
// this.lastEntity = (EntityImp) result;
// return result;
// }
// @Override
// public ILeaf createLeaf(Quark idNewLong, String displayString, Display display, LeafType type, USymbol symbol) {
// Objects.requireNonNull(idNewLong);
// if (type != LeafType.ABSTRACT_CLASS && type != LeafType.ANNOTATION && type != LeafType.CLASS
// && type != LeafType.INTERFACE && type != LeafType.ENUM && type != LeafType.LOLLIPOP_FULL
// && type != LeafType.LOLLIPOP_HALF && type != LeafType.NOTE)
// return super.createLeaf(idNewLong, displayString, display, type, symbol);
//
// if (getNamespaceSeparator() == null)
// return super.createLeaf(idNewLong, displayString, display, type, symbol);
//
// final ILeaf result = createLeafInternal(idNewLong, display, type, symbol);
// this.lastEntity = (EntityImp) result;
// return result;
// }
2010-11-15 20:35:36 +00:00
2015-04-07 18:18:37 +00:00
private boolean allowMixing;
public void setAllowMixing(boolean allowMixing) {
this.allowMixing = allowMixing;
}
public boolean isAllowMixing() {
return allowMixing;
}
private int useLayoutExplicit = 0;
public void layoutNewLine() {
useLayoutExplicit++;
incRawLayout();
}
@Override
final protected ImageData exportDiagramInternal(OutputStream os, int index, FileFormatOption fileFormatOption)
throws IOException {
2023-01-13 17:36:46 +00:00
if (useLayoutExplicit != 0)
2015-04-07 18:18:37 +00:00
return exportLayoutExplicit(os, index, fileFormatOption);
2023-01-13 17:36:46 +00:00
2015-04-07 18:18:37 +00:00
return super.exportDiagramInternal(os, index, fileFormatOption);
}
final protected ImageData exportLayoutExplicit(OutputStream os, int index, FileFormatOption fileFormatOption)
throws IOException {
final FullLayout fullLayout = new FullLayout();
for (int i = 0; i <= useLayoutExplicit; i++) {
final RowLayout rawLayout = getRawLayout(i);
fullLayout.addRowLayout(rawLayout);
}
2022-02-10 18:16:18 +00:00
return createImageBuilder(fileFormatOption).annotations(false) // Backwards compatibility - this only applies
// when "layout_new_line" is used
.drawable(fullLayout).write(os);
2015-04-07 18:18:37 +00:00
}
private RowLayout getRawLayout(int raw) {
final RowLayout rawLayout = new RowLayout();
for (EntityImp leaf : entityFactory.leafs())
2023-01-13 17:36:46 +00:00
if (leaf.getRawLayout() == raw)
2015-04-07 18:18:37 +00:00
rawLayout.addLeaf(getEntityImageClass(leaf));
2023-01-13 17:36:46 +00:00
2015-04-07 18:18:37 +00:00
return rawLayout;
}
private TextBlock getEntityImageClass(EntityImp entity) {
2022-08-26 16:00:28 +00:00
return new EntityImageClass(entity, getSkinParam(), this);
2013-12-10 19:36:50 +00:00
}
2011-03-20 21:40:07 +00:00
2016-05-31 19:41:55 +00:00
@Override
public String checkFinalError() {
for (Link link : this.getLinks()) {
final int len = link.getLength();
2023-01-13 17:36:46 +00:00
if (len == 1)
for (Link link2 : this.getLinks())
if (link2.sameConnections(link) && link2.getLength() != 1)
2016-05-31 19:41:55 +00:00
link2.setLength(1);
2023-01-13 17:36:46 +00:00
2016-05-31 19:41:55 +00:00
}
this.applySingleStrategy();
return super.checkFinalError();
}
2010-11-15 20:35:36 +00:00
}