Interface Reference
-
- All Superinterfaces:
java.io.Serializable
- All Known Implementing Classes:
ReferenceImpl
public interface Reference extends java.io.SerializableThe Interface Reference.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AreagetArea()Gets the area.BBoxgetBbox()Gets the bbox.intgetEnd()Gets the end.intgetId()Gets the id.intgetIdString()Gets the id string.intgetStart()Gets the start.ReferenceTypegetType()Gets the type.doublegetX()Gets the x.doublegetY()Gets the y.voidsetArea(Area area)Sets the area.voidsetBbox(BBox bbox)Sets the bbox.voidsetEnd(int end)Sets the end.voidsetId(int id)Sets the id.voidsetIdString(int idString)Sets the id string.voidsetStart(int start)Sets the start.voidsetType(ReferenceType type)Sets the type.voidsetX(double x)Sets the x.voidsetY(double y)Sets the y.
-
-
-
Method Detail
-
getType
ReferenceType getType()
Gets the type.- Returns:
- the type
- See Also:
ReferenceType
-
setType
void setType(ReferenceType type)
Sets the type.- Parameters:
type- the new type- See Also:
ReferenceType
-
getId
int getId()
Gets the id.- Returns:
- the id
-
setId
void setId(int id)
Sets the id.- Parameters:
id- the new id
-
getIdString
int getIdString()
Gets the id string.- Returns:
- the id string
-
setIdString
void setIdString(int idString)
Sets the id string.- Parameters:
idString- the new id string
-
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
-
getStart
int getStart()
Gets the start.- Returns:
- the start
-
setStart
void setStart(int start)
Sets the start.- Parameters:
start- the new start
-
getEnd
int getEnd()
Gets the end.- Returns:
- the end
-
setEnd
void setEnd(int end)
Sets the end.- Parameters:
end- the new end
-
-