Interface Path
-
- All Superinterfaces:
java.io.Serializable
- All Known Implementing Classes:
PathImpl
public interface Path extends java.io.SerializableThe Interface Path.
-
-
Method Summary
All Methods Instance Methods Abstract 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
int getIndex()
Gets the index.- Returns:
- the index
-
setIndex
void setIndex(int index)
Sets the index.- Parameters:
index- the index to set
-
getOffsetX
double getOffsetX()
Gets the offset X.- Returns:
- the offsetX
-
setOffsetX
void setOffsetX(double offsetX)
Sets the offset X.- Parameters:
offsetX- the offsetX to set
-
getOffsetY
double getOffsetY()
Gets the offset Y.- Returns:
- the offsetY
-
setOffsetY
void setOffsetY(double offsetY)
Sets the offset Y.- Parameters:
offsetY- the offsetY to set
-
getPoints
java.lang.String getPoints()
Gets the points.- Returns:
- the points
-
setPoints
void setPoints(java.lang.String points)
Sets the points.- Parameters:
points- the points to set
-
getPointsAsList
java.util.List<java.lang.Double> getPointsAsList()
Gets the points as list.- Returns:
- the path points as list
-
setPoints
void setPoints(java.util.List<java.lang.Double> points)
Sets the points.- Parameters:
points- list of path points
-
-