Uses of Class
org.jgrapht.event.VertexTraversalEvent
-
Packages that use VertexTraversalEvent Package Description org.jgrapht.alg Algorithms provided with JGraphT.org.jgrapht.event Event classes and listener interfaces, used to provide a change notification mechanism on graph modification events.org.jgrapht.traverse Graph traversal means. -
-
Uses of VertexTraversalEvent in org.jgrapht.alg
Methods in org.jgrapht.alg with parameters of type VertexTraversalEvent Modifier and Type Method Description void
ConnectivityInspector.MyTraversalListener. vertexTraversed(VertexTraversalEvent<V> e)
-
Uses of VertexTraversalEvent in org.jgrapht.event
Methods in org.jgrapht.event with parameters of type VertexTraversalEvent Modifier and Type Method Description void
TraversalListener. vertexFinished(VertexTraversalEvent<V> e)
Called to inform the listener that the specified vertex have been finished during the graph traversal.void
TraversalListenerAdapter. vertexFinished(VertexTraversalEvent<V> e)
void
TraversalListener. vertexTraversed(VertexTraversalEvent<V> e)
Called to inform the listener that the specified vertex have been visited during the graph traversal.void
TraversalListenerAdapter. vertexTraversed(VertexTraversalEvent<V> e)
-
Uses of VertexTraversalEvent in org.jgrapht.traverse
Subclasses of VertexTraversalEvent in org.jgrapht.traverse Modifier and Type Class Description (package private) static class
AbstractGraphIterator.FlyweightVertexEvent<VV>
A reusable vertex event.Methods in org.jgrapht.traverse that return VertexTraversalEvent Modifier and Type Method Description private VertexTraversalEvent<V>
CrossComponentIterator. createVertexTraversalEvent(V vertex)
private VertexTraversalEvent<V>
RandomWalkIterator. createVertexTraversalEvent(V vertex)
Methods in org.jgrapht.traverse with parameters of type VertexTraversalEvent Modifier and Type Method Description protected void
AbstractGraphIterator. fireVertexFinished(VertexTraversalEvent<V> e)
Informs all listeners that a the specified vertex was finished.protected void
AbstractGraphIterator. fireVertexTraversed(VertexTraversalEvent<V> e)
Informs all listeners that a the specified vertex was visited.
-