Uses of Interface
org.jgrapht.event.TraversalListener
-
Packages that use TraversalListener 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 TraversalListener in org.jgrapht.alg
Classes in org.jgrapht.alg that implement TraversalListener Modifier and Type Class Description private classConnectivityInspector.MyTraversalListenerA 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 classTraversalListenerAdapter<V,E>An empty do-nothing implementation of theTraversalListenerinterface 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.List<TraversalListener<V,E>>AbstractGraphIterator. traversalListenersMethods in org.jgrapht.traverse with parameters of type TraversalListener Modifier and Type Method Description voidAbstractGraphIterator. addTraversalListener(TraversalListener<V,E> l)Adds the specified traversal listener to this iterator.voidGraphIterator. addTraversalListener(TraversalListener<V,E> l)Adds the specified traversal listener to this iterator.voidAbstractGraphIterator. removeTraversalListener(TraversalListener<V,E> l)Removes the specified traversal listener from this iterator.voidGraphIterator. removeTraversalListener(TraversalListener<V,E> l)Removes the specified traversal listener from this iterator.
-