Uses of Interface
org.jgrapht.event.GraphListener
-
Packages that use GraphListener Package Description org.jgrapht The front-end API's interfaces and classes, includingGraph
.org.jgrapht.alg.connectivity Algorithms dealing with various connectivity aspects of a graph.org.jgrapht.alg.util Utilities used by JGraphT algorithms.org.jgrapht.graph Implementations of various graphs. -
-
Uses of GraphListener in org.jgrapht
Methods in org.jgrapht with parameters of type GraphListener Modifier and Type Method Description void
ListenableGraph. addGraphListener(GraphListener<V,E> l)
Adds the specified graph listener to this graph, if not already present.void
ListenableGraph. removeGraphListener(GraphListener<V,E> l)
Removes the specified graph listener from this graph, if present. -
Uses of GraphListener in org.jgrapht.alg.connectivity
Classes in org.jgrapht.alg.connectivity that implement GraphListener Modifier and Type Class Description class
ConnectivityInspector<V,E>
Allows obtaining various connectivity aspects of a graph. -
Uses of GraphListener in org.jgrapht.alg.util
Classes in org.jgrapht.alg.util that implement GraphListener Modifier and Type Class Description class
NeighborCache<V,E>
Maintains a cache of each vertex's neighbors. -
Uses of GraphListener in org.jgrapht.graph
Classes in org.jgrapht.graph that implement GraphListener Modifier and Type Class Description private class
AsSubgraph.BaseGraphListener
An internal listener on the base graph.Fields in org.jgrapht.graph with type parameters of type GraphListener Modifier and Type Field Description private java.util.List<GraphListener<V,E>>
DefaultListenableGraph. graphListeners
Methods in org.jgrapht.graph with parameters of type GraphListener Modifier and Type Method Description void
DefaultListenableGraph. addGraphListener(GraphListener<V,E> l)
void
DefaultListenableGraph. removeGraphListener(GraphListener<V,E> l)
-