Uses of Class
org.jgrapht.event.VertexTraversalEvent
Packages that use VertexTraversalEvent
Package
Description
Event classes and listener interfaces, used to provide a change notification mechanism on graph
modification events.
Graph traversal means.
-
Uses of VertexTraversalEvent in org.jgrapht.event
Methods in org.jgrapht.event with parameters of type VertexTraversalEventModifier and TypeMethodDescriptionvoidTraversalListener.vertexFinished(VertexTraversalEvent<V> e) Called to inform the listener that the specified vertex have been finished during the graph traversal.voidTraversalListenerAdapter.vertexFinished(VertexTraversalEvent<V> e) voidTraversalListener.vertexTraversed(VertexTraversalEvent<V> e) Called to inform the listener that the specified vertex have been visited during the graph traversal.voidTraversalListenerAdapter.vertexTraversed(VertexTraversalEvent<V> e) -
Uses of VertexTraversalEvent in org.jgrapht.traverse
Methods in org.jgrapht.traverse that return VertexTraversalEventModifier and TypeMethodDescriptionprotected VertexTraversalEvent<V>AbstractGraphIterator.createVertexTraversalEvent(V vertex) Create a vertex traversal event.Methods in org.jgrapht.traverse with parameters of type VertexTraversalEventModifier and TypeMethodDescriptionprotected voidAbstractGraphIterator.fireVertexFinished(VertexTraversalEvent<V> e) Informs all listeners that a the specified vertex was finished.protected voidAbstractGraphIterator.fireVertexTraversed(VertexTraversalEvent<V> e) Informs all listeners that a the specified vertex was visited.