Uses of Interface
nz.ac.waikato.mcennis.rat.graph.path.Path

Packages that use Path
nz.ac.waikato.mcennis.rat.graph.path   
 

Uses of Path in nz.ac.waikato.mcennis.rat.graph.path
 

Classes in nz.ac.waikato.mcennis.rat.graph.path that implement Path
 class BasicPath
          Class for a basic Path implementation
 

Methods in nz.ac.waikato.mcennis.rat.graph.path that return Path
 Path BasicPath.addActor(Actor a, double cost)
           
 Path Path.addActor(Actor a, double cost)
          Create a new path that contains all the contents of this path plus an additional link to the given actor with the additional cost given.
 Path PathFactory.create(java.util.Properties props)
          Create a new Path.
 Path[] BasicPathSet.getPath()
           
 Path[] PathSet.getPath()
          Return all paths in this object.
 Path[] BasicPathSet.getPath(java.lang.String source, java.lang.String destination)
           
 Path[] PathSet.getPath(java.lang.String source, java.lang.String destination)
          Return all paths that start with actor source and end with actor destination.
 Path[] BasicPathSet.getPathByDestination(java.lang.String destination)
           
 Path[] PathSet.getPathByDestination(java.lang.String destination)
          Return all paths that end with an actor with this ID or null if none exist FIXME: should be by actor - not ID - as actors can have the same id if they differ in type.
 Path[] BasicPathSet.getPathBySource(java.lang.String source)
           
 Path[] PathSet.getPathBySource(java.lang.String source)
          Return all paths that start with an actor with this ID or null if none exist.
 

Methods in nz.ac.waikato.mcennis.rat.graph.path with parameters of type Path
 void BasicPathSet.addPath(Path p)
           
 void PathSet.addPath(Path p)
          Add a new path to this PathSet