Uses of Interface
org.apache.commons.graph.DirectedGraph

Packages that use DirectedGraph
org.apache.commons.graph   
org.apache.commons.graph.algorithm.dataflow   
org.apache.commons.graph.algorithm.path   
org.apache.commons.graph.algorithm.search   
org.apache.commons.graph.contract   
org.apache.commons.graph.decorator   
org.apache.commons.graph.domain.basic   
org.apache.commons.graph.domain.dependency   
org.apache.commons.graph.domain.jdepend   
org.apache.commons.graph.domain.statemachine   
org.apache.commons.graph.factory   
org.apache.commons.graph.search   
org.apache.commons.graph.visualize   
 

Uses of DirectedGraph in org.apache.commons.graph
 

Subinterfaces of DirectedGraph in org.apache.commons.graph
 interface MutableDirectedGraph
          Description of the Interface
 

Uses of DirectedGraph in org.apache.commons.graph.algorithm.dataflow
 

Methods in org.apache.commons.graph.algorithm.dataflow with parameters of type DirectedGraph
private  void DataFlowSolutions.calculateDataFlow(DirectedGraph graph, DataFlowEquations eq)
           
 

Constructors in org.apache.commons.graph.algorithm.dataflow with parameters of type DirectedGraph
DataFlowSolutions(DirectedGraph graph, DataFlowEquations eq)
           
 

Uses of DirectedGraph in org.apache.commons.graph.algorithm.path
 

Fields in org.apache.commons.graph.algorithm.path declared as DirectedGraph
private  DirectedGraph AllPairsShortestPath.graph
           
private  DirectedGraph AllPairsShortestPath.EdgeList.graph
           
private  DirectedGraph AllPairsShortestPath.WPath.graph
           
private  DirectedGraph AllPaths.graph
           
 

Methods in org.apache.commons.graph.algorithm.path with parameters of type DirectedGraph
 void AllPairsShortestPath.update(DirectedGraph graph)
          Description of the Method
private  void AllPairsShortestPath.compute(DirectedGraph graph, Vertex[] vArray)
          Description of the Method
 

Constructors in org.apache.commons.graph.algorithm.path with parameters of type DirectedGraph
AllPairsShortestPath(DirectedGraph graph)
          Constructor for the AllPairsShortestPath object
AllPairsShortestPath.EdgeList(DirectedGraph graph, java.util.List vertices)
          Constructor for the EdgeList object
AllPairsShortestPath.WPath(DirectedGraph graph, Vertex[] vArray, int[][] pred, int start, int finish, double cost)
          Constructor for the WPath object
AllPaths(DirectedGraph graph)
           
 

Uses of DirectedGraph in org.apache.commons.graph.algorithm.search
 

Methods in org.apache.commons.graph.algorithm.search with parameters of type DirectedGraph
private  void DFS.visitEdge(DirectedGraph graph, Edge e, Visitor visitor)
          Description of the Method
private  void DFS.visitVertex(DirectedGraph graph, Vertex v, Visitor visitor)
          Description of the Method
 void DFS.visit(DirectedGraph graph, Vertex root, Visitor visitor)
          visit - Visits the graph
 void DFS.visit(DirectedGraph graph, Visitor visitor)
          visit - Visits all nodes in the graph.
 

Uses of DirectedGraph in org.apache.commons.graph.contract
 

Fields in org.apache.commons.graph.contract declared as DirectedGraph
private  DirectedGraph AcyclicContract.CycleDetector.graph
           
 

Methods in org.apache.commons.graph.contract with parameters of type DirectedGraph
 void AcyclicContract.setImpl(DirectedGraph graph)
          Sets the impl attribute of the AcyclicContract object
 void Contract.setImpl(DirectedGraph impl)
          The impl that gets passed in is read-only.
 

Constructors in org.apache.commons.graph.contract with parameters of type DirectedGraph
AcyclicContract.CycleDetector(DirectedGraph graph)
          Constructor for the CycleDetector object
 

Uses of DirectedGraph in org.apache.commons.graph.decorator
 

Classes in org.apache.commons.graph.decorator that implement DirectedGraph
 class DDirectedGraph
          Description of the Class
 

Methods in org.apache.commons.graph.decorator that return DirectedGraph
 DirectedGraph DDirectedGraph.transpose()
          Description of the Method
 

Methods in org.apache.commons.graph.decorator with parameters of type DirectedGraph
static DDirectedGraph DDirectedGraph.decorateGraph(DirectedGraph graph)
          Description of the Method
 

Constructors in org.apache.commons.graph.decorator with parameters of type DirectedGraph
DDirectedGraph(DirectedGraph impl)
          Constructor for the DDirectedGraph object
 

Uses of DirectedGraph in org.apache.commons.graph.domain.basic
 

Classes in org.apache.commons.graph.domain.basic that implement DirectedGraph
 class DirectedGraphImpl
          Description of the Class
 class DirectedGraphWrapper
          Description of the Class
 

Fields in org.apache.commons.graph.domain.basic declared as DirectedGraph
private  DirectedGraph DirectedGraphWrapper.impl
           
 

Methods in org.apache.commons.graph.domain.basic with parameters of type DirectedGraph
 void DirectedGraphWrapper.setDirGraph(DirectedGraph graph)
          Sets the dirGraph attribute of the DirectedGraphWrapper object
 

Constructors in org.apache.commons.graph.domain.basic with parameters of type DirectedGraph
DirectedGraphImpl(DirectedGraph dg)
          Constructor for the DirectedGraphImpl object
DirectedGraphWrapper(DirectedGraph graph)
          Constructor for the DirectedGraphWrapper object
 

Uses of DirectedGraph in org.apache.commons.graph.domain.dependency
 

Classes in org.apache.commons.graph.domain.dependency that implement DirectedGraph
 class DependencyGraph
          Description of the Class
 

Uses of DirectedGraph in org.apache.commons.graph.domain.jdepend
 

Classes in org.apache.commons.graph.domain.jdepend that implement DirectedGraph
 class JDependGraph
           
 

Uses of DirectedGraph in org.apache.commons.graph.domain.statemachine
 

Classes in org.apache.commons.graph.domain.statemachine that implement DirectedGraph
 class StateMachine
          StateMachine - This represents a Finite State Machine.
 

Uses of DirectedGraph in org.apache.commons.graph.factory
 

Methods in org.apache.commons.graph.factory that return DirectedGraph
 DirectedGraph GraphFactory.makeDirectedGraph(Contract[] contracts, boolean isWeighted, DirectedGraph graph)
          makeDirectedGraph
 

Methods in org.apache.commons.graph.factory with parameters of type DirectedGraph
 DirectedGraph GraphFactory.makeDirectedGraph(Contract[] contracts, boolean isWeighted, DirectedGraph graph)
          makeDirectedGraph
 MutableDirectedGraph GraphFactory.makeMutableDirectedGraph(Contract[] contracts, boolean isWeighted, DirectedGraph graph)
          makeMutableDirectedGraph
 

Uses of DirectedGraph in org.apache.commons.graph.search
 

Methods in org.apache.commons.graph.search with parameters of type DirectedGraph
private  void DFS.visitEdge(DirectedGraph graph, Edge e, Visitor visitor)
          Description of the Method
private  void DFS.visitVertex(DirectedGraph graph, Vertex v, Visitor visitor)
          Description of the Method
 void DFS.visit(DirectedGraph graph, Vertex root, Visitor visitor)
          visit - Visits the graph
 

Uses of DirectedGraph in org.apache.commons.graph.visualize
 

Methods in org.apache.commons.graph.visualize with parameters of type DirectedGraph
protected  void TouchGraph.writeNodeset(java.io.PrintWriter pw, DirectedGraph graph)
          Description of the Method
protected  void TouchGraph.writeEdgeset(java.io.PrintWriter pw, DirectedGraph graph)
          Description of the Method
 void TouchGraph.toXML(DirectedGraph graph, java.io.OutputStream os)
          Description of the Method