org.apache.commons.graph.visit
Interface GraphVisitHandler<V extends Vertex,E extends Edge<V>>

All Known Implementing Classes:
BaseGraphVisitHandler

public interface GraphVisitHandler<V extends Vertex,E extends Edge<V>>

Description of the Interface


Method Summary
 void discoverEdge(E edge)
          Description of the Method
 void discoverGraph(Graph<V,E> graph)
          Description of the Method
 void discoverVertex(V vertex)
          Description of the Method
 void finishEdge(E edge)
          Description of the Method
 void finishGraph(Graph<V,E> graph)
          Description of the Method
 void finishVertex(V vertex)
          Description of the Method
 

Method Detail

discoverGraph

void discoverGraph(Graph<V,E> graph)
Description of the Method


discoverVertex

void discoverVertex(V vertex)
Description of the Method


discoverEdge

void discoverEdge(E edge)
Description of the Method


finishEdge

void finishEdge(E edge)
Description of the Method


finishVertex

void finishVertex(V vertex)
Description of the Method


finishGraph

void finishGraph(Graph<V,E> graph)
Description of the Method



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