net.sourceforge.plantuml.sequencediagram.teoz.TeozLayer 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.sequencediagram.teoz;
import net.sourceforge.plantuml.klimt.drawing.UGraphic;
import net.sourceforge.plantuml.klimt.font.FontParam;
import net.sourceforge.plantuml.klimt.font.StringBounder;
import net.sourceforge.plantuml.klimt.geom.XDimension2D;
import net.sourceforge.plantuml.klimt.shape.AbstractTextBlock;
import net.sourceforge.plantuml.klimt.shape.TextBlock;
import net.sourceforge.plantuml.png.PngTitler;
public class TeozLayer extends AbstractTextBlock implements TextBlock {
private final PngTitler titler;
private XDimension2D dimension;
private final FontParam param;
public TeozLayer(PngTitler titler, StringBounder stringBounder, FontParam param) {
this.titler = titler;
this.param = param;
dimension = new XDimension2D(0, 0);
if (titler != null && titler.getRibbonBlock() != null) {
dimension = titler.getRibbonBlock().calculateDimension(stringBounder);
}
}
public XDimension2D calculateDimension(StringBounder stringBounder) {
return dimension;
}
public FontParam getParam() {
return param;
}
public void drawU(UGraphic ug) {
if (titler != null) {
titler.getRibbonBlock().drawU(ug);
}
}
}