com.cuspy.pathfinder
Interface PathListener

All Superinterfaces:
java.util.EventListener

public interface PathListener
extends java.util.EventListener

Classes that want to know about path finding events must implement the PathListener interface.


Method Summary
 void considered(PathEvent e)
          Called when a new path is being considered.
 void done(PathEvent e)
          Called when the PathFinder is done.
 

Method Detail

done

public void done(PathEvent e)
Called when the PathFinder is done.

Parameters:
e - the PathEvent containing the finished path.

considered

public void considered(PathEvent e)
Called when a new path is being considered.

Parameters:
e - the PathEvent that belongs to the PathFinder.