Interface Position
-
- All Superinterfaces:
java.io.Serializable
- All Known Implementing Classes:
PositionImpl
public interface Position extends java.io.SerializableThe Interface Position.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description doublegetH()Gets the h.doublegetW()Gets the w.doublegetX()Gets the x.doublegetY()Gets the y.voidsetH(double h)Sets the h.voidsetW(double w)Sets the w.voidsetX(double x)Sets the x.voidsetY(double y)Sets the y.
-
-
-
Method Detail
-
getX
double getX()
Gets the x.- Returns:
- the x
-
setX
void setX(double x)
Sets the x.- Parameters:
x- the new x
-
getY
double getY()
Gets the y.- Returns:
- the y
-
setY
void setY(double y)
Sets the y.- Parameters:
y- the new y
-
getW
double getW()
Gets the w.- Returns:
- the w
-
setW
void setW(double w)
Sets the w.- Parameters:
w- the new w
-
getH
double getH()
Gets the h.- Returns:
- the h
-
setH
void setH(double h)
Sets the h.- Parameters:
h- the new h
-
-