Uses of Class
org.jgrapht.event.ConnectedComponentTraversalEvent
Package | Description |
---|---|
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 ConnectedComponentTraversalEvent in org.jgrapht.event
Methods in org.jgrapht.event with parameters of type ConnectedComponentTraversalEvent Modifier and Type Method Description void
TraversalListener. connectedComponentFinished(ConnectedComponentTraversalEvent e)
Called to inform listeners that the traversal of the current connected component has finished.void
TraversalListenerAdapter. connectedComponentFinished(ConnectedComponentTraversalEvent e)
void
TraversalListener. connectedComponentStarted(ConnectedComponentTraversalEvent e)
Called to inform listeners that a traversal of a new connected component has started.void
TraversalListenerAdapter. connectedComponentStarted(ConnectedComponentTraversalEvent e)
-
Uses of ConnectedComponentTraversalEvent in org.jgrapht.traverse
Methods in org.jgrapht.traverse with parameters of type ConnectedComponentTraversalEvent Modifier and Type Method Description protected void
AbstractGraphIterator. fireConnectedComponentFinished(ConnectedComponentTraversalEvent e)
Informs all listeners that the traversal of the current connected component finished.protected void
AbstractGraphIterator. fireConnectedComponentStarted(ConnectedComponentTraversalEvent e)
Informs all listeners that a traversal of a new connected component has started.