Interface Guide
-
- All Superinterfaces:
java.io.Serializable
- All Known Implementing Classes:
GuideImpl
public interface Guide extends java.io.Serializable
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetColor()intgetColorIndex()intgetColorUid()java.lang.StringgetDirection()OwnergetOwner()intgetUid()doublegetX()doublegetY()booleanisShort()voidsetColor(java.lang.String color)voidsetColorIndex(int colorIndex)voidsetColorUid(int colorUid)voidsetDirection(java.lang.String direction)voidsetOwner(Owner owner)voidsetShort(boolean isShort)voidsetUid(int uid)voidsetX(double x)voidsetY(double y)
-
-
-
Method Detail
-
getUid
int getUid()
- Returns:
- the uid
-
setUid
void setUid(int uid)
- Parameters:
uid- the uid to set
-
getDirection
java.lang.String getDirection()
- Returns:
- the direction
-
setDirection
void setDirection(java.lang.String direction)
- Parameters:
direction- the direction to set
-
getX
double getX()
- Returns:
- the x
-
setX
void setX(double x)
- Parameters:
x- the x to set
-
getY
double getY()
- Returns:
- the y
-
setY
void setY(double y)
- Parameters:
y- the y to set
-
isShort
boolean isShort()
- Returns:
- the isShort
-
setShort
void setShort(boolean isShort)
- Parameters:
isShort- the isShort to set
-
getColor
java.lang.String getColor()
- Returns:
- the color
-
setColor
void setColor(java.lang.String color)
- Parameters:
color- the color to set
-
getColorUid
int getColorUid()
- Returns:
- the colorUid
-
setColorUid
void setColorUid(int colorUid)
- Parameters:
colorUid- the colorUid to set
-
getColorIndex
int getColorIndex()
- Returns:
- the colorIndex
-
setColorIndex
void setColorIndex(int colorIndex)
- Parameters:
colorIndex- the colorIndex to set
-
setOwner
void setOwner(Owner owner)
- Parameters:
owner- the owner to set
-
-