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

All Known Implementing Classes:
AcyclicContract.CycleDetector, DependencyVisitor, VisitorAdapter

public interface Visitor

Description of the Interface


Method Summary
 void discoverEdge(Edge edge)
          Description of the Method
 void discoverGraph(Graph graph)
          Description of the Method
 void discoverVertex(Vertex vertex)
          Description of the Method
 void finishEdge(Edge edge)
          Description of the Method
 void finishGraph(Graph graph)
          Description of the Method
 void finishVertex(Vertex vertex)
          Description of the Method
 

Method Detail

discoverGraph

public void discoverGraph(Graph graph)
Description of the Method


discoverVertex

public void discoverVertex(Vertex vertex)
Description of the Method


discoverEdge

public void discoverEdge(Edge edge)
Description of the Method


finishEdge

public void finishEdge(Edge edge)
Description of the Method


finishVertex

public void finishVertex(Vertex vertex)
Description of the Method


finishGraph

public void finishGraph(Graph graph)
Description of the Method