Class PathImpl
- java.lang.Object
-
- com.priint.pubserver.metadata.xml.element.PathImpl
-
- All Implemented Interfaces:
Path,java.io.Serializable
public class PathImpl extends java.lang.Object implements java.io.Serializable, Path
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description PathImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetIndex()Gets the index.doublegetOffsetX()Gets the offset X.doublegetOffsetY()Gets the offset Y.java.lang.StringgetPoints()Gets the points.java.util.List<java.lang.Double>getPointsAsList()Gets the points as list.voidsetIndex(int index)Sets the index.voidsetOffsetX(double offsetX)Sets the offset X.voidsetOffsetY(double offsetY)Sets the offset Y.voidsetPoints(java.lang.String points)Sets the points.voidsetPoints(java.util.List<java.lang.Double> points)Sets the points.
-
-
-
Method Detail
-
getIndex
public int getIndex()
Description copied from interface:PathGets the index.
-
setIndex
public void setIndex(int index)
Description copied from interface:PathSets the index.
-
getOffsetX
public double getOffsetX()
Description copied from interface:PathGets the offset X.- Specified by:
getOffsetXin interfacePath- Returns:
- the offsetX
-
setOffsetX
public void setOffsetX(double offsetX)
Description copied from interface:PathSets the offset X.- Specified by:
setOffsetXin interfacePath- Parameters:
offsetX- the offsetX to set
-
getOffsetY
public double getOffsetY()
Description copied from interface:PathGets the offset Y.- Specified by:
getOffsetYin interfacePath- Returns:
- the offsetY
-
setOffsetY
public void setOffsetY(double offsetY)
Description copied from interface:PathSets the offset Y.- Specified by:
setOffsetYin interfacePath- Parameters:
offsetY- the offsetY to set
-
getPoints
public java.lang.String getPoints()
Description copied from interface:PathGets the points.
-
setPoints
public void setPoints(java.lang.String points)
Description copied from interface:PathSets the points.
-
getPointsAsList
public java.util.List<java.lang.Double> getPointsAsList()
Description copied from interface:PathGets the points as list.- Specified by:
getPointsAsListin interfacePath- Returns:
- the path points as list
-
-