Uses of Interface
org.jgrapht.event.GraphListener
-
Packages that use GraphListener Package Description org.jgrapht org.jgrapht.alg Algorithms provided with JGraphT.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 voidListenableGraph. addGraphListener(GraphListener<V,E> l)Adds the specified graph listener to this graph, if not already present.voidListenableGraph. removeGraphListener(GraphListener<V,E> l)Removes the specified graph listener from this graph, if present. -
Uses of GraphListener in org.jgrapht.alg
Classes in org.jgrapht.alg that implement GraphListener Modifier and Type Class Description classConnectivityInspector<V,E>Allows obtaining various connectivity aspects of a graph.classDirectedNeighborIndex<V,E>Maintains a cache of each vertex's neighbors.classNeighborIndex<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 classSubgraph.BaseGraphListenerAn 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. graphListenersMethods in org.jgrapht.graph with parameters of type GraphListener Modifier and Type Method Description voidDefaultListenableGraph. addGraphListener(GraphListener<V,E> l)voidDefaultListenableGraph. removeGraphListener(GraphListener<V,E> l)
-