![JAR search and dependency download from the Maven repository](/logo.png)
net.sourceforge.plantuml.activitydiagram3.PositionedNote 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.activitydiagram3;
import net.sourceforge.plantuml.activitydiagram3.ftile.Swimlane;
import net.sourceforge.plantuml.klimt.color.Colors;
import net.sourceforge.plantuml.klimt.creole.Display;
import net.sourceforge.plantuml.sequencediagram.NotePosition;
import net.sourceforge.plantuml.sequencediagram.NoteType;
public class PositionedNote {
private final Display display;
private final NotePosition notePosition;
private final NoteType type;
private final Colors colors;
private final Swimlane swimlaneNote;
public PositionedNote(Display display, NotePosition position, NoteType type, Swimlane swimlaneNote, Colors colors) {
this.display = display;
this.notePosition = position;
this.type = type;
this.colors = colors;
this.swimlaneNote = swimlaneNote;
}
public PositionedNote(Display note, NotePosition position, NoteType type, Swimlane swimlaneNote) {
this(note, position, type, swimlaneNote, null);
}
@Override
public String toString() {
return "type=" + type + " notePosition=" + notePosition + " " + display;
}
public Display getDisplay() {
return display;
}
public NotePosition getNotePosition() {
return notePosition;
}
public NoteType getType() {
return type;
}
public Colors getColors() {
return colors;
}
public final Swimlane getSwimlaneNote() {
return swimlaneNote;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy