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

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

Uses of GraphElementList in org.jtool.jxplatform.graph
 

Methods in org.jtool.jxplatform.graph with parameters of type GraphElementList
 void GraphElementList.removeAll(GraphElementList list)
          Removes all graph elements in a list from this list.
 boolean GraphElementList.retainAll(GraphElementList list)
          Retains only graph elements in this list that are contained in a list.
 boolean GraphElementList.equals(GraphElementList list)
          Tests if this list is equals to a given list.
 void GraphNode.addOutgoingEdges(GraphElementList edges)
          Adds an edges outgoing from this node.
 

Constructors in org.jtool.jxplatform.graph with parameters of type GraphElementList
GraphElementList(GraphElementList list)
          Creates a new list from a list of GraphElement elements.
GraphElementSet(GraphElementList list)
          Creates a new set from a list of graph elements.
 

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

Methods in org.jtool.jxplatform.graph.pdg that return GraphElementList
 GraphElementList PDGNode.getOutgoingCDEdges()
          Returns control dependence edges outgoing from this node.
 GraphElementList PDGNode.getIncomingDDEdges()
          Returns data dependence edges incoming to this node.
 GraphElementList PDGNode.getOutgoingDDEdges()
          Returns data dependence edges outgoing from this node.