Package org.apache.batik.ext.awt.geom
Class SegmentList.SplitResults
- java.lang.Object
-
- org.apache.batik.ext.awt.geom.SegmentList.SplitResults
-
- Enclosing class:
- SegmentList
public static class SegmentList.SplitResults extends java.lang.Objectread-only helper class to represent a split-result. So far, used only by FlowRegions.
-
-
Field Summary
Fields Modifier and Type Field Description (package private) SegmentListaboveisnull, when the list is empty.(package private) SegmentListbelow
-
Constructor Summary
Constructors Constructor Description SplitResults(SegmentList above, SegmentList below)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description SegmentListgetAbove()SegmentListgetBelow()
-
-
-
Field Detail
-
above
final SegmentList above
isnull, when the list is empty.
-
below
final SegmentList below
-
-
Constructor Detail
-
SplitResults
public SplitResults(SegmentList above, SegmentList below)
-
-
Method Detail
-
getAbove
public SegmentList getAbove()
- Returns:
- the list of segments above some split-point - can be null
-
getBelow
public SegmentList getBelow()
- Returns:
- the list of segments below some split-point - can be null
-
-