Uses of Class
net.sf.freecol.common.model.TradeRoute

Packages that use TradeRoute
net.sf.freecol.client.control Contains the classes responsible for the control of the game. 
net.sf.freecol.client.gui.panel Contains the panels and dialogs. 
net.sf.freecol.common.model Contains the game model. 
net.sf.freecol.server.control Contains the classes responsible for the control of the game. 
 

Uses of TradeRoute in net.sf.freecol.client.control
 

Methods in net.sf.freecol.client.control that return TradeRoute
 TradeRoute ClientModelController.getNewTradeRoute(Player player)
          Returns a new TradeRoute object.
 

Methods in net.sf.freecol.client.control with parameters of type TradeRoute
 void InGameController.assignTradeRoute(Unit unit, TradeRoute tradeRoute)
           
 void InGameController.updateTradeRoute(TradeRoute route)
          Updates a trade route.
 

Method parameters in net.sf.freecol.client.control with type arguments of type TradeRoute
 void InGameController.setTradeRoutes(java.util.List<TradeRoute> routes)
          Sets the trade routes for this player
 

Uses of TradeRoute in net.sf.freecol.client.gui.panel
 

Constructors in net.sf.freecol.client.gui.panel with parameters of type TradeRoute
TradeRouteDialog(Canvas parent, TradeRoute selectedRoute)
          The constructor that will add the items to this panel.
TradeRouteInputDialog(Canvas parent, TradeRoute newRoute)
          The constructor that will add the items to this panel.
 

Uses of TradeRoute in net.sf.freecol.common.model
 

Fields in net.sf.freecol.common.model declared as TradeRoute
static TradeRoute TradeRoute.NO_TRADE_ROUTE
           
 

Methods in net.sf.freecol.common.model that return TradeRoute
 TradeRoute TradeRoute.clone()
          Clone the trade route and return a deep copy.
 TradeRoute ModelController.getNewTradeRoute(Player player)
          Get a new TradeRoute object.
 TradeRoute Unit.getTradeRoute()
          Get the TradeRoute value.
 

Methods in net.sf.freecol.common.model that return types with arguments of type TradeRoute
 java.util.List<TradeRoute> Player.getTradeRoutes()
          Get the TradeRoutes value.
 

Methods in net.sf.freecol.common.model with parameters of type TradeRoute
 void Unit.setTradeRoute(TradeRoute newTradeRoute)
          Set the TradeRoute value.
 void TradeRoute.updateFrom(TradeRoute other)
          Copy all fields from another trade route to this one.
 

Method parameters in net.sf.freecol.common.model with type arguments of type TradeRoute
 void Player.setTradeRoutes(java.util.List<TradeRoute> newTradeRoutes)
          Set the TradeRoutes value.
 

Uses of TradeRoute in net.sf.freecol.server.control
 

Methods in net.sf.freecol.server.control that return TradeRoute
 TradeRoute ServerModelController.getNewTradeRoute(Player player)
          Returns a new TradeRoute object.