Package com.ibm.wala.util.graph
Interface OrderedMultiGraph<T>
-
- All Superinterfaces:
EdgeManager<T>
,Graph<T>
,java.lang.Iterable<T>
,NodeManager<T>
- All Known Implementing Classes:
BasicOrderedMultiGraph
public interface OrderedMultiGraph<T> extends Graph<T>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
addEdge(int i, T src, T dst)
add an edge and record it so dst is the ith successor of srcT
getSuccessor(T node, int i)
get the ith successor of a node-
Methods inherited from interface com.ibm.wala.util.graph.EdgeManager
addEdge, getPredNodeCount, getPredNodes, getSuccNodeCount, getSuccNodes, hasEdge, removeAllIncidentEdges, removeEdge, removeIncomingEdges, removeOutgoingEdges
-
Methods inherited from interface com.ibm.wala.util.graph.Graph
removeNodeAndEdges
-
Methods inherited from interface com.ibm.wala.util.graph.NodeManager
addNode, containsNode, getNumberOfNodes, iterator, removeNode
-
-