![JAR search and dependency download from the Maven repository](/logo.png)
net.sourceforge.plantuml.sequencediagram.Divider 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;
import net.sourceforge.plantuml.klimt.creole.Display;
import net.sourceforge.plantuml.skin.ComponentType;
import net.sourceforge.plantuml.style.Style;
import net.sourceforge.plantuml.style.StyleBuilder;
import net.sourceforge.plantuml.style.StyleSignatureBasic;
import net.sourceforge.plantuml.style.WithStyle;
public class Divider extends AbstractEvent implements Event, WithStyle {
private final Display text;
final private Style style;
public StyleSignatureBasic getStyleSignature() {
return ComponentType.DIVIDER.getStyleSignature();
}
public Style[] getUsedStyles() {
return new Style[] { style };
}
public Divider(Display text, StyleBuilder styleBuilder) {
this.text = text;
this.style = getStyleSignature().getMergedStyle(styleBuilder);
}
public final Display getText() {
return text;
}
public boolean dealWith(Participant someone) {
return false;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy