Class PolygonImpl
java.lang.Object
com.priint.pubserver.metadata.xml.base.ShapeImpl
com.priint.pubserver.metadata.xml.base.PolygonImpl
- All Implemented Interfaces:
Polygon,Shape,Serializable
- See Also:
-
Constructor Summary
Constructors -
Method Summary
Methods inherited from class com.priint.pubserver.metadata.xml.base.ShapeImpl
getFill, getOpacity, getStroke, getStrokeWidth, setFill, setOpacity, setStroke, setStrokeWidthMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface com.priint.pubserver.metadata.base.Shape
getFill, getOpacity, getStroke, getStrokeWidth, setFill, setOpacity, setStroke, setStrokeWidth
-
Constructor Details
-
PolygonImpl
public PolygonImpl()
-
-
Method Details
-
getPoints
Description copied from interface:PolygonGets the points of this polygon.
Gets the points of this polygons as a whitespace separated list of value pairs (x,y).
-
setPoints
Description copied from interface:PolygonSets the points of this polygon.
Sets the points of this polygon as a list of whitespace separated value pairs (x,y).
-
getCoordinates
Description copied from interface:PolygonGets the points of this polygon as list.
Gets the points of this polygon as a list of
Points.
Note, that in the default implementation (and therefore XML schema), this property is XmlTransient, i.e.: not included in the XML document.
Changes of values in the list are not reflected in the XML document after marshaling; to change values, use thePolygon.setPoints(String)methods instead.- Specified by:
getCoordinatesin interfacePolygon- Returns:
- points as java.util.List
-