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

Packages that use GraphNode
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 GraphNode in org.jtool.jxplatform.graph
 

Fields in org.jtool.jxplatform.graph declared as GraphNode
protected  GraphNode GraphEdge.src
          A sourec node of this edge.
protected  GraphNode GraphEdge.dst
          A destination node of this edge.
 

Methods in org.jtool.jxplatform.graph that return GraphNode
 GraphNode GraphEdge.getSrcNode()
          Returns source nodes of this edges.
 GraphNode GraphEdge.getDstNode()
          Returns destination nodes of this edges.
 

Methods in org.jtool.jxplatform.graph with parameters of type GraphNode
 void GraphEdge.setSrcNode(GraphNode node)
          Sets a source node of this edge.
 void GraphEdge.setDstNode(GraphNode node)
          Sets a destination node of this edge.
 void Graph.add(GraphNode node)
          Adds a given node to this graph.
 void Graph.remove(GraphNode node)
          Removes a given node from this graph.
 boolean Graph.contains(GraphNode node)
          Tests if this graph contains a given node.
 

Constructors in org.jtool.jxplatform.graph with parameters of type GraphNode
GraphEdge(GraphNode src, GraphNode dst)
          Creates a new edge.
 

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

Subclasses of GraphNode in org.jtool.jxplatform.graph.cfg
 class CFGAssignment
          An assignment node of CFGs.
 class CFGBranch
          A branch node of CFGs.
 class CFGBreakContinue
          A break or continue node of CFGs.
 class CFGCall
          A method call node of CFGs.
 class CFGDeclaration
          A local or field declaration node of CFGs.
 class CFGExit
          A exit node of CFGs.
 class CFGMerge
          A merge node of CFGs.
 class CFGMethodEntry
          A method entry node of CFGs.
 class CFGNode
          A node of CFGs.
 class CFGParameter
          A parameter node of CFGs.
 class CFGStatement
          A statement node of CFGs.
 

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

Subclasses of GraphNode in org.jtool.jxplatform.graph.pdg
 class PDGMethodEntry
          A method entry node of PDGs.
 class PDGNode
          A node of PDGs.
 class PDGStatement
          A statement node of PDGs.