Class NarrativeProviderImpl
- java.lang.Object
-
- org.onebusaway.transit_data_federation.impl.narrative.NarrativeProviderImpl
-
- All Implemented Interfaces:
Serializable
public final class NarrativeProviderImpl extends Object implements Serializable
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description NarrativeProviderImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description AgencyNarrative
getNarrativeForAgencyId(String agencyId)
RouteCollectionNarrative
getNarrativeForRouteCollectionId(org.onebusaway.gtfs.model.AgencyAndId routeCollectionId)
StopNarrative
getNarrativeForStopId(org.onebusaway.gtfs.model.AgencyAndId stopId)
StopTimeNarrative
getNarrativeForStopTimeEntry(StopTimeEntry entry)
TripNarrative
getNarrativeForTripId(org.onebusaway.gtfs.model.AgencyAndId tripId)
RouteCollectionNarrative
getRouteCollectionNarrativeForId(org.onebusaway.gtfs.model.AgencyAndId routeCollectionId)
ShapePoints
getShapePointsForId(org.onebusaway.gtfs.model.AgencyAndId id)
void
setNarrativeForAgency(String agencyId, AgencyNarrative narrative)
void
setNarrativeForRouteCollectionId(org.onebusaway.gtfs.model.AgencyAndId id, RouteCollectionNarrative narrative)
void
setNarrativeForStop(org.onebusaway.gtfs.model.AgencyAndId stopId, StopNarrative narrative)
void
setNarrativeForStopTimeEntry(org.onebusaway.gtfs.model.AgencyAndId tripId, int index, StopTimeNarrative narrative)
void
setNarrativeForTripId(org.onebusaway.gtfs.model.AgencyAndId tripId, TripNarrative narrative)
void
setShapePointsForId(org.onebusaway.gtfs.model.AgencyAndId shapeId, ShapePoints shapePoints)
-
-
-
Method Detail
-
setNarrativeForAgency
public void setNarrativeForAgency(String agencyId, AgencyNarrative narrative)
-
setNarrativeForStop
public void setNarrativeForStop(org.onebusaway.gtfs.model.AgencyAndId stopId, StopNarrative narrative)
-
setNarrativeForRouteCollectionId
public void setNarrativeForRouteCollectionId(org.onebusaway.gtfs.model.AgencyAndId id, RouteCollectionNarrative narrative)
-
setNarrativeForTripId
public void setNarrativeForTripId(org.onebusaway.gtfs.model.AgencyAndId tripId, TripNarrative narrative)
-
setNarrativeForStopTimeEntry
public void setNarrativeForStopTimeEntry(org.onebusaway.gtfs.model.AgencyAndId tripId, int index, StopTimeNarrative narrative)
-
setShapePointsForId
public void setShapePointsForId(org.onebusaway.gtfs.model.AgencyAndId shapeId, ShapePoints shapePoints)
-
getNarrativeForAgencyId
public AgencyNarrative getNarrativeForAgencyId(String agencyId)
-
getNarrativeForRouteCollectionId
public RouteCollectionNarrative getNarrativeForRouteCollectionId(org.onebusaway.gtfs.model.AgencyAndId routeCollectionId)
-
getNarrativeForStopId
public StopNarrative getNarrativeForStopId(org.onebusaway.gtfs.model.AgencyAndId stopId)
-
getNarrativeForStopTimeEntry
public StopTimeNarrative getNarrativeForStopTimeEntry(StopTimeEntry entry)
-
getRouteCollectionNarrativeForId
public RouteCollectionNarrative getRouteCollectionNarrativeForId(org.onebusaway.gtfs.model.AgencyAndId routeCollectionId)
-
getNarrativeForTripId
public TripNarrative getNarrativeForTripId(org.onebusaway.gtfs.model.AgencyAndId tripId)
-
getShapePointsForId
public ShapePoints getShapePointsForId(org.onebusaway.gtfs.model.AgencyAndId id)
-
-