Package org.onebusaway.gtfs.model
Interface ShapePointProxy
-
public interface ShapePointProxy- Author:
- bdferris
- See Also:
ShapePoint.setProxy(ShapePointProxy)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidclearDistTraveled()doublegetDistTraveled()IntegergetId()doublegetLat()doublegetLon()intgetSequence()AgencyAndIdgetShapeId()booleanisDistTraveledSet()voidsetDistTraveled(double distTraveled)voidsetId(Integer id)voidsetLat(double lat)voidsetLon(double lon)voidsetSequence(int sequence)voidsetShapeId(AgencyAndId shapeId)
-
-
-
Method Detail
-
getId
Integer getId()
-
setId
void setId(Integer id)
-
getShapeId
AgencyAndId getShapeId()
-
setShapeId
void setShapeId(AgencyAndId shapeId)
-
getSequence
int getSequence()
-
setSequence
void setSequence(int sequence)
-
isDistTraveledSet
boolean isDistTraveledSet()
-
getDistTraveled
double getDistTraveled()
-
setDistTraveled
void setDistTraveled(double distTraveled)
-
clearDistTraveled
void clearDistTraveled()
-
getLat
double getLat()
-
setLat
void setLat(double lat)
-
getLon
double getLon()
-
setLon
void setLon(double lon)
-
-