Interface Area
-
- All Superinterfaces:
java.io.Serializable
- All Known Implementing Classes:
AreaImpl
public interface Area extends java.io.SerializableThe Interface Area.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.List<PathPoint>getPathpoint()Gets the pathpoint.java.util.List<PathPoint>getPathpoints()Same asgetPathpoint()voidsetPathpoint(java.util.List<PathPoint> pathpoint)Sets the pathpoint.voidsetPathpoints(java.util.List<PathPoint> pathpoint)Same assetPathpoint(List)
-
-
-
Method Detail
-
getPathpoint
java.util.List<PathPoint> getPathpoint()
Gets the pathpoint.- Returns:
- the pathpoint
- See Also:
PathPoint
-
setPathpoint
void setPathpoint(java.util.List<PathPoint> pathpoint)
Sets the pathpoint.- Parameters:
pathpoint- the new pathpoint- See Also:
PathPoint
-
getPathpoints
java.util.List<PathPoint> getPathpoints()
Same as
getPathpoint()included in interface and implementation for backward compatibility
- Returns:
- the pathpoints
-
setPathpoints
void setPathpoints(java.util.List<PathPoint> pathpoint)
Same as
setPathpoint(List)included in interface and implementation for backward compatibility
- Parameters:
pathpoint- (list of) pathpoint to set
-
-