Uses of Class
nz.ac.waikato.mcennis.rat.graph.path.NotConstructedError

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

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

Methods in nz.ac.waikato.mcennis.rat.graph.path that throw NotConstructedError
 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.
 void BasicPathSet.addPath(Path p)
           
 void PathSet.addPath(Path p)
          Add a new path to this PathSet
 boolean BasicPath.contains(Actor node)
           
 boolean Path.contains(Actor node)
          returns if the path contains the given actor
 double BasicPath.getCost()
           
 double Path.getCost()
          return the total cost of this path
 Actor BasicPath.getEnd()
           
 Actor Path.getEnd()
          return the last actor in this path
 Actor[] BasicPath.getMiddle()
           
 Actor[] Path.getMiddle()
          return all actors that are neither the start or end actors.
 Actor[] BasicPath.getPath()
           
 Actor[] Path.getPath()
          Returns the order array of the actors in this object.
 Actor BasicPath.getStart()
           
 Actor Path.getStart()
          Return the first actor in the path
 java.lang.String Path.getType()
          Returns the PathSet id of this path
 boolean BasicPath.isWeak()
           
 boolean Path.isWeak()
          returns if this path ever traverses a link in the wrong direction.