net.sourceforge.plantuml.compositediagram.CompositeDiagram Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of plantuml-mit Show documentation
Show all versions of plantuml-mit Show documentation
PlantUML is a component that allows to quickly write diagrams from text.
// THIS FILE HAS BEEN GENERATED BY A PREPROCESSOR.
package net.sourceforge.plantuml.compositediagram;
import java.util.Map;
import net.sourceforge.plantuml.classdiagram.AbstractEntityDiagram;
import net.sourceforge.plantuml.core.UmlSource;
import net.sourceforge.plantuml.skin.UmlDiagramType;
public class CompositeDiagram extends AbstractEntityDiagram {
// ::remove folder when __HAXE__
public CompositeDiagram(UmlSource source, Map skinParam) {
super(source, UmlDiagramType.COMPOSITE, skinParam);
}
// @Override
// protected IEntity getOrCreateLeaf2(Quark ident, Quark code, LeafType type, USymbol symbol) {
// Objects.requireNonNull(ident);
// // final Ident idNewLong = buildLeafIdent(id);
// if (type == null) {
// if (isGroup(code.getName())) {
// return getGroup(code.getName());
// }
// return reallyCreateLeaf(ident, Display.getWithNewlines(code.getName()), LeafType.BLOCK, symbol);
// }
// return reallyCreateLeaf(ident, Display.getWithNewlines(code.getName()), type, symbol);
// }
}