Uses of Class
world.Station

Packages that use Station
gui.controls   
scheduler   
scheduler.modulesinterfaces   
world   
 

Uses of Station in gui.controls
 

Fields in gui.controls declared as Station
private  Station StationsCellRenderer.station
          A station we are rendering.
 

Methods in gui.controls with parameters of type Station
 void StationsList.AddStation(Station station)
          Adds a single station to the list.
 void StationsList.RemoveStation(Station station)
          Removes a single station from the list.
 void StationsChooser.AddStation(Station station)
          Adds a given station to the list.
 

Uses of Station in scheduler
 

Fields in scheduler declared as Station
private  Station TravelPart.originStation
          A station related to the origin.
private  Station TravelPart.destinationStation
          A station related to the destination.
 Station FeedbackStationsPair.originStation
          An origin stations.
 Station FeedbackStationsPair.destinationStation
          A destination station.
 Station ConnectionsFinderTask.currentStation
          A current work station (within the current connection).
 Station ConnectionsFinderTask.startStation
          A starting station used to remember the station where the new connection chunk should start.
 

Methods in scheduler that return Station
 Station TravelPart.GetOriginStation()
          Gets the origin related station.
 Station TravelPart.GetDestinationStation()
          Gets the destination related station.
 

Methods in scheduler with parameters of type Station
private  java.util.ArrayList TravelPartsGenerator.GenerateParts(Location origin, Location destination, Station originStation, Station destinationStation, int depth)
          Gets a list of all possible divisions into parts taken by some mean of transportation of a travel from the given origin to the given destination.
 void TravelPart.SetOriginStation(Station station)
          Sets the station related to the origin.
 void TravelPart.SetDestinationStation(Station station)
          Sets the station related to the destination.
private  java.util.ArrayList TravelDivisionsConnectionsFinder.GetDeparturingConnections(int meanOfTransportation, Station station, Station destinationStation, java.util.Date departureLimit, java.util.Date arrivalLimit, int connectionsCountLimit)
          Gets a list of at most connectionsCountLimit possible connections leaving from the given station not before the given time limit with the minimal time spans between the time limit and the departure time.
private  java.util.ArrayList TravelDivisionsConnectionsFinder.GetChangeConnections(int meanOfTransportation, Station changeStation, Station destinationStation, java.util.Date changeStartTime, java.util.Date arrivalLimit, java.lang.Boolean fTooLongChangesExist)
          Gets a list of all connections leaving from the given station not before the given change time and holding the change constraints.
 void ConnectionsFinderTask.AddVisitedStation(Station station)
          Adds a station to the list of visited stations.
 boolean ConnectionsFinderTask.HasVisitedStation(Station station)
          Checks whether the given station has been visited before.
 

Uses of Station in scheduler.modulesinterfaces
 

Methods in scheduler.modulesinterfaces with parameters of type Station
 java.util.ArrayList ConnectionsTravelInfoProvider.GetConnectionsForStation(Station station, int meanOfTransportation)
          Gets a list of all connections leaving from the given station.
 

Uses of Station in world
 

Subclasses of Station in world
 class Airport
          An airport.
 class BusStop
          A bus stop.
 class Harbour
          A harbour.
 class TrainStation
          A train station.
 

Methods in world with parameters of type Station
 java.util.ArrayList WorldTravelInfoProvider.GetConnectionsForStation(Station station, int meanOfTransportation)
           
private  void World.RemoveConnectionsWithStation(Station station)
          Removes all the connections that contain the given station.
 boolean Station.IsEqual(Station other)
          Gets a boolean value indicating whether this and the other one stations are equal.
 int Connection.GetStationIndex(Station station)
          Gets an index of the given station within the stations list of this connection.