Uses of Interface
org.apache.commons.graph.visit.GraphVisitHandler

Packages that use GraphVisitHandler
org.apache.commons.graph.visit Visit algorithms implementation. 
 

Uses of GraphVisitHandler in org.apache.commons.graph.visit
 

Classes in org.apache.commons.graph.visit that implement GraphVisitHandler
 class BaseGraphVisitHandler<V extends Vertex,E extends Edge<V>>
          Base NOOP GraphVisitHandler implementation.
 

Methods in org.apache.commons.graph.visit with parameters of type GraphVisitHandler
<V extends Vertex,E extends Edge<V>>
void
Visit.breadthFirstSearch(Graph<V,E> graph, V source, GraphVisitHandler<V,E> handler)
          Breadth-first search algorithm implementation.
<V extends Vertex,E extends Edge<V>>
void
Visit.depthFirstSearch(Graph<V,E> graph, V source, GraphVisitHandler<V,E> handler)
          Depth-first search algorithm implementation.
 



Copyright © 2001-2011 The Apache Software Foundation. All Rights Reserved.