Kieker 1.12

kieker.tools.traceAnalysis.filter.visualization.graph
Interface AbstractGraph.IGraphVisitor<V,E>

Type Parameters:
V - The type of the graph's vertices
E - The type of the graph's edges
All Known Implementing Classes:
AbstractDependencyGraphFormatterVisitor, DescriptionDecoratorFilter, TraceColoringFilter
Enclosing class:
AbstractGraph<V extends AbstractVertex<V,E,O>,E extends AbstractEdge<V,E,O>,O>

public static interface AbstractGraph.IGraphVisitor<V,E>

Interface for abstract-graph visitors. These visitors can be used in conjunction with the graph's traversal methods.

Since:
1.6
Author:
Holger Knoche

Method Summary
 void visitEdge(E edge)
          Call-back operation that is invoked when an edge is encountered during graph traversal.
 void visitVertex(V vertex)
          Call-back operation that is invoked when a vertex is encountered during graph traversal.
 

Method Detail

visitVertex

void visitVertex(V vertex)
Call-back operation that is invoked when a vertex is encountered during graph traversal.

Parameters:
vertex - The encountered vertex
Since:
1.6

visitEdge

void visitEdge(E edge)
Call-back operation that is invoked when an edge is encountered during graph traversal.

Parameters:
edge - The encountered edge
Since:
1.6

Kieker 1.12

Copyright 2015 Kieker Project, http://kieker-monitoring.net