Class AreaImpl
- java.lang.Object
-
- com.priint.pubserver.metadata.xml.note.AreaImpl
-
- All Implemented Interfaces:
Area,java.io.Serializable
public class AreaImpl extends java.lang.Object implements java.io.Serializable, Area
The type Area.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description AreaImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.List<PathPoint>getPathpoint()Gets the pathpoint.java.util.List<PathPoint>getPathpoints()Same asArea.getPathpoint()voidsetPathpoint(java.util.List<PathPoint> pathpoint)Sets the pathpoint.voidsetPathpoints(java.util.List<PathPoint> pathpoint)Same asArea.setPathpoint(List)
-
-
-
Method Detail
-
getPathpoint
public java.util.List<PathPoint> getPathpoint()
Description copied from interface:AreaGets the pathpoint.- Specified by:
getPathpointin interfaceArea- Returns:
- the pathpoint
- See Also:
PathPoint
-
setPathpoint
public void setPathpoint(java.util.List<PathPoint> pathpoint)
Description copied from interface:AreaSets the pathpoint.- Specified by:
setPathpointin interfaceArea- Parameters:
pathpoint- the new pathpoint- See Also:
PathPoint
-
getPathpoints
public java.util.List<PathPoint> getPathpoints()
Description copied from interface:AreaSame as
Area.getPathpoint()included in interface and implementation for backward compatibility
- Specified by:
getPathpointsin interfaceArea- Returns:
- the pathpoints
-
setPathpoints
public void setPathpoints(java.util.List<PathPoint> pathpoint)
Description copied from interface:AreaSame as
Area.setPathpoint(List)included in interface and implementation for backward compatibility
- Specified by:
setPathpointsin interfaceArea- Parameters:
pathpoint- (list of) pathpoint to set
-
-