Package org.openstreetmap.josm.actions
Class JoinAreasAction.Multipolygon
- java.lang.Object
-
- org.openstreetmap.josm.actions.JoinAreasAction.Multipolygon
-
- Enclosing class:
- JoinAreasAction
public static class JoinAreasAction.Multipolygon extends java.lang.Object
A record class to store how a multipolygon is constructed
-
-
Constructor Summary
Constructors Constructor Description Multipolygon(Way way)
Constructs a newMultipolygon
.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.List<Way>
getInnerWays()
Returns the inner ways.Way
getOuterWay()
Returns the outer way.
-
-
-
Constructor Detail
-
Multipolygon
public Multipolygon(Way way)
Constructs a newMultipolygon
.- Parameters:
way
- outer way
-
-
Method Detail
-
getOuterWay
public final Way getOuterWay()
Returns the outer way.- Returns:
- the outer way
-
getInnerWays
public final java.util.List<Way> getInnerWays()
Returns the inner ways.- Returns:
- the inner ways
-
-