Uses of Interface
org.jgrapht.event.VertexSetListener
-
Packages that use VertexSetListener Package Description org.jgrapht 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.graph Implementations of various graphs. -
-
Uses of VertexSetListener in org.jgrapht
Methods in org.jgrapht with parameters of type VertexSetListener Modifier and Type Method Description voidListenableGraph. addVertexSetListener(VertexSetListener<V> l)Adds the specified vertex set listener to this graph, if not already present.voidListenableGraph. removeVertexSetListener(VertexSetListener<V> l)Removes the specified vertex set listener from this graph, if present. -
Uses of VertexSetListener in org.jgrapht.alg
Classes in org.jgrapht.alg that implement VertexSetListener 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 VertexSetListener in org.jgrapht.event
Subinterfaces of VertexSetListener in org.jgrapht.event Modifier and Type Interface Description interfaceGraphListener<V,E>A listener that is notified when the graph changes. -
Uses of VertexSetListener in org.jgrapht.graph
Classes in org.jgrapht.graph that implement VertexSetListener Modifier and Type Class Description private classSubgraph.BaseGraphListenerAn internal listener on the base graph.Fields in org.jgrapht.graph with type parameters of type VertexSetListener Modifier and Type Field Description private java.util.List<VertexSetListener<V>>DefaultListenableGraph. vertexSetListenersMethods in org.jgrapht.graph with parameters of type VertexSetListener Modifier and Type Method Description voidDefaultListenableGraph. addVertexSetListener(VertexSetListener<V> l)voidDefaultListenableGraph. removeVertexSetListener(VertexSetListener<V> l)
-