Uses of Class
jfreerails.controller.BuildTrackStrategy

Packages that use BuildTrackStrategy
jfreerails.client.renderer Provides classes that render/paint/draw the games graphics. 
jfreerails.client.top Provides classes that make up the client user interface (implemented using Swing). 
jfreerails.controller Provides classes that may be used by the client or the server to operate on the game world, for example, building trains and stations. 
 

Uses of BuildTrackStrategy in jfreerails.client.renderer
 

Methods in jfreerails.client.renderer that return BuildTrackStrategy
private  BuildTrackStrategy BuildTrackController.getBts()
          Utility method that gets the BuildTrackStrategy from the model root.
 

Uses of BuildTrackStrategy in jfreerails.client.top
 

Methods in jfreerails.client.top that return BuildTrackStrategy
private  BuildTrackStrategy UserInputOnMapController.getBts()
           
 

Uses of BuildTrackStrategy in jfreerails.controller
 

Fields in jfreerails.controller declared as BuildTrackStrategy
private  BuildTrackStrategy BuildTrackExplorer.buildTrackStrategy
           
 

Methods in jfreerails.controller that return BuildTrackStrategy
 BuildTrackStrategy TrackMoveProducer.getBuildTrackStrategy()
           
static BuildTrackStrategy BuildTrackStrategy.getDefault(ReadOnlyWorld w)
           
static BuildTrackStrategy BuildTrackStrategy.getMultipleRuleInstance(java.util.ArrayList<java.lang.Integer> ruleIDs, ReadOnlyWorld w)
           
static BuildTrackStrategy BuildTrackStrategy.getSingleRuleInstance(int trackTypeID, ReadOnlyWorld w)
           
 

Methods in jfreerails.controller with parameters of type BuildTrackStrategy
 java.util.List TrackPathFinder.generatePath(ImPoint start, ImPoint targetPoint, BuildTrackStrategy bts)
           
 void BuildTrackExplorer.setBuildTrackStrategy(BuildTrackStrategy trackStrategy)
           
 void TrackMoveProducer.setBuildTrackStrategy(BuildTrackStrategy buildTrackStrategy)
           
 void TrackPathFinder.setupSearch(ImPoint startPoint, ImPoint targetPoint, BuildTrackStrategy bts)