Uses of Class
de.upb.swtpra05.group03.shuttle.GraphNode

Packages that use GraphNode
de.upb.swtpra05.group03.shuttle   
 

Uses of GraphNode in de.upb.swtpra05.group03.shuttle
 

Fields in de.upb.swtpra05.group03.shuttle declared as GraphNode
private  GraphNode GraphEdge.destination
           
 

Methods in de.upb.swtpra05.group03.shuttle that return GraphNode
 GraphNode NavigationInterface.getNode(int stationId)
          Returns the execution graph node with the station id.
 GraphNode NavigationInterface.getLast(TaskPlanInterface plan, int lastBeforePlan)
          Gets the last station on route if the the taskplan isn't empty else the last station before useable tasks.
 GraphNode Navigation.getNode(int stationId)
           
 GraphNode Navigation.getLast(TaskPlanInterface aTaskPlan, int lastStationBeforeUseableTasks)
           
 GraphNode GraphEdge.getDestination()
           
 

Methods in de.upb.swtpra05.group03.shuttle with parameters of type GraphNode
 TaskPlanInterface NavigationInterface.getShortestBetween(GraphNode start, GraphNode dest, de.upb.swtpra.kernel.id.OrderID id, GraphEdge not)
          Returns the shortest taskplan between start and destination without use of edge dontUse.
 TaskPlanInterface NavigationInterface.getShortestBetween(GraphNode start, GraphNode dest, de.upb.swtpra.kernel.id.OrderID id, GraphEdge not, boolean roundAbout, int curTime)
           
 GraphEdge NavigationInterface.getEdge(GraphNode start, GraphNode dest)
          Returns the execution graph edge between start and destination.
 TaskPlanInterface Navigation.getShortestBetween(GraphNode start, GraphNode destination, de.upb.swtpra.kernel.id.OrderID orderId, GraphEdge dontUse)
           
 TaskPlanInterface Navigation.getShortestBetween(GraphNode start, GraphNode destination, de.upb.swtpra.kernel.id.OrderID orderId, GraphEdge dontUse, boolean roundAbout, int currentTime)
           
 GraphEdge Navigation.getEdge(GraphNode start, GraphNode destination)
           
 void GraphNode.addPrevStation(GraphNode egn)
           
 void GraphNode.remPrevStation(GraphNode egn)
           
 void GraphEdge.setDestination(GraphNode destination)
           
 

Constructors in de.upb.swtpra05.group03.shuttle with parameters of type GraphNode
GraphEdge(GraphNode dest, long w, int costs, int time, int distance)