Uses of Interface
jfreerails.controller.GraphExplorer

Packages that use GraphExplorer
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 GraphExplorer in jfreerails.controller
 

Classes in jfreerails.controller that implement GraphExplorer
 class BuildTrackExplorer
          GraphExplorer that explorers possible track placements, the ints it returns are encoded PositionOnTrack objects.
 class FlatTrackExplorer
          GraphExplorer that explorers track, the ints it returns are encoded PositionOnTrack objects.
 

Fields in jfreerails.controller declared as GraphExplorer
private  GraphExplorer SimpleAStarPathFinder.explorer
           
 

Methods in jfreerails.controller with parameters of type GraphExplorer
 IntArray SimpleAStarPathFinder.findpath(int[] currentPosition, int[] targets, GraphExplorer e)
           
 int SimpleAStarPathFinder.findstep(int currentPosition, int[] targets, GraphExplorer tempExplorer)
           
 void SimpleAStarPathFinder.setupSearch(int[] currentPosition, int[] targets, GraphExplorer e)