Uses of Interface
org.apache.commons.graph.algorithm.search.Visitor

Packages that use Visitor
org.apache.commons.graph.algorithm.search   
org.apache.commons.graph.contract   
org.apache.commons.graph.domain.dependency   
 

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

Classes in org.apache.commons.graph.algorithm.search that implement Visitor
 class VisitorAdapter
           
 

Methods in org.apache.commons.graph.algorithm.search with parameters of type Visitor
 void CostSearch.visitVertex(WeightedGraph graph, Vertex vertex, double cost, Visitor visitor)
          Description of the Method
 void CostSearch.visitEdge(WeightedGraph graph, Edge e, double cost, Visitor visitor)
          Description of the Method
 void CostSearch.visit(WeightedGraph graph, Vertex root, Visitor visitor)
          Description of the Method
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 Visitor in org.apache.commons.graph.contract
 

Classes in org.apache.commons.graph.contract that implement Visitor
 class AcyclicContract.CycleDetector
          Description of the Class
 

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

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