Class SlotSet
- java.lang.Object
-
- net.sourceforge.plantuml.ugraphic.comp.SlotSet
-
-
Constructor Summary
Constructors Constructor Description SlotSet()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
addAll(SlotSet other)
void
addSlot(double start, double end)
void
drawDebugX(UGraphic ug, double size)
SlotSet
filter(double start, double end)
java.util.List<Slot>
getSlots()
java.util.Iterator<Slot>
iterator()
SlotSet
reverse()
SlotSet
smaller(double margin)
java.lang.String
toString()
-
-
-
Method Detail
-
filter
public SlotSet filter(double start, double end)
-
addAll
public void addAll(SlotSet other)
-
addSlot
public void addSlot(double start, double end)
-
smaller
public SlotSet smaller(double margin)
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
getSlots
public java.util.List<Slot> getSlots()
-
iterator
public java.util.Iterator<Slot> iterator()
- Specified by:
iterator
in interfacejava.lang.Iterable<Slot>
-
reverse
public SlotSet reverse()
-
drawDebugX
public void drawDebugX(UGraphic ug, double size)
-
-