Uses of Class
easik.sketch.edge.SketchEdge

Packages that use SketchEdge
easik.sketch   
easik.sketch.constraint   
easik.sketch.path   
easik.sketch.util   
 

Uses of SketchEdge in easik.sketch
 

Methods in easik.sketch with parameters of type SketchEdge
 void Sketch.addEdge(SketchEdge inEdge)
          Adds an edge to the sketch
 void Sketch.removeEdge(SketchEdge toRemove)
          Removes an edge, also cascades to remove all constraints using it.
 

Uses of SketchEdge in easik.sketch.constraint
 

Fields in easik.sketch.constraint with type parameters of type SketchEdge
protected  java.util.ArrayList<SketchEdge> Constraint._edges
          The edge involved in the constraint
 

Methods in easik.sketch.constraint that return types with arguments of type SketchEdge
 java.util.ArrayList<SketchEdge> Constraint.getEdges()
          Returns the edges dealt with in the constraint.
 

Methods in easik.sketch.constraint with parameters of type SketchEdge
 boolean Constraint.hasEdge(SketchEdge inEdge)
          Checks to see if the constraint contains a path that uses an edge
 

Uses of SketchEdge in easik.sketch.path
 

Fields in easik.sketch.path with type parameters of type SketchEdge
private  java.util.LinkedList<SketchEdge> SketchPath._edges
          The list of edges comprising this path
 

Methods in easik.sketch.path that return types with arguments of type SketchEdge
 java.util.LinkedList<SketchEdge> SketchPath.getEdges()
          Returns the list of edges
 

Methods in easik.sketch.path with parameters of type SketchEdge
static void SketchPath.renamePaths(java.util.HashMap<java.lang.String,SketchPath> paths, SketchEdge newEdge)
          Static method to rename a path in instances where an edge contained within the path has been renamed.
 

Constructor parameters in easik.sketch.path with type arguments of type SketchEdge
SketchPath(java.util.LinkedList<SketchEdge> inPath)
          Default constructor takes a LinkedList of edges
 

Uses of SketchEdge in easik.sketch.util
 

Fields in easik.sketch.util with type parameters of type SketchEdge
private  java.util.LinkedList<SketchEdge> SketchHandler._curPath
          The edges involved in the current path being built from the XML file