Uses of Class
org.jtool.jxplatform.graph.GraphEdge

Packages that use GraphEdge
org.jtool.jxplatform.graph Application programming interfaces for manipulating graphs created from source code.  
org.jtool.jxplatform.graph.cfg Application programming interfaces for manipulating control flow graphs (CFGs) created from source code.  
org.jtool.jxplatform.graph.pdg Application programming interfaces for manipulating program dependence graphs (PDGs) created from source code.  
 

Uses of GraphEdge in org.jtool.jxplatform.graph
 

Methods in org.jtool.jxplatform.graph with parameters of type GraphEdge
 void GraphNode.addIncomingEdge(GraphEdge edge)
          Adds an edge incoming to this node.
 void GraphNode.addOutgoingEdge(GraphEdge edge)
          Adds an edge outgoing from this node.
 void GraphNode.removeIncomingEdge(GraphEdge edge)
          Removes an edge incoming to this node.
 void GraphNode.removeOutgoingEdge(GraphEdge edge)
          Removes an edge outgoing from this node.
 void Graph.add(GraphEdge edge)
          Adds a given edge to this graph.
 void Graph.remove(GraphEdge edge)
          Removes a given edge from this graph.
 boolean Graph.contains(GraphEdge edge)
          Tests if this graph contains a given edge.
 

Uses of GraphEdge in org.jtool.jxplatform.graph.cfg
 

Subclasses of GraphEdge in org.jtool.jxplatform.graph.cfg
 class ControlFlow
          An edge (control flow) of CFGs.
 

Uses of GraphEdge in org.jtool.jxplatform.graph.pdg
 

Subclasses of GraphEdge in org.jtool.jxplatform.graph.pdg
 class CD
          A data dependence edge of PDGs.
 class DD
          A data dependence edge of PDGs.
 class Dependence
          An edge (dependence) of PDGs.