Uses of Interface
org.jgrapht.event.TraversalListener
-
Packages that use TraversalListener Package Description org.jgrapht.alg.connectivity Algorithms dealing with various connectivity aspects of a graph.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 TraversalListener in org.jgrapht.alg.connectivity
Classes in org.jgrapht.alg.connectivity that implement TraversalListener Modifier and Type Class Description private class
ConnectivityInspector.MyTraversalListener
A traversal listener that groups all vertices according to to their containing connected set. -
Uses of TraversalListener in org.jgrapht.event
Classes in org.jgrapht.event that implement TraversalListener Modifier and Type Class Description class
TraversalListenerAdapter<V,E>
An empty do-nothing implementation of theTraversalListener
interface used for subclasses. -
Uses of TraversalListener in org.jgrapht.traverse
Fields in org.jgrapht.traverse with type parameters of type TraversalListener Modifier and Type Field Description private java.util.Set<TraversalListener<V,E>>
AbstractGraphIterator. traversalListeners
Methods in org.jgrapht.traverse with parameters of type TraversalListener Modifier and Type Method Description void
AbstractGraphIterator. addTraversalListener(TraversalListener<V,E> l)
void
GraphIterator. addTraversalListener(TraversalListener<V,E> l)
Adds the specified traversal listener to this iterator.void
AbstractGraphIterator. removeTraversalListener(TraversalListener<V,E> l)
void
GraphIterator. removeTraversalListener(TraversalListener<V,E> l)
Removes the specified traversal listener from this iterator.
-