Uses of Class
org.jgrapht.event.GraphVertexChangeEvent
Packages that use GraphVertexChangeEvent
Package
Description
Algorithms dealing with various connectivity aspects of a graph.
Utilities used by JGraphT algorithms.
Event classes and listener interfaces, used to provide a change notification mechanism on graph
modification events.
Implementations of various graphs.
-
Uses of GraphVertexChangeEvent in org.jgrapht.alg.connectivity
Methods in org.jgrapht.alg.connectivity with parameters of type GraphVertexChangeEventModifier and TypeMethodDescriptionvoid
ConnectivityInspector.vertexAdded
(GraphVertexChangeEvent<V> e) void
ConnectivityInspector.vertexRemoved
(GraphVertexChangeEvent<V> e) -
Uses of GraphVertexChangeEvent in org.jgrapht.alg.util
Methods in org.jgrapht.alg.util with parameters of type GraphVertexChangeEventModifier and TypeMethodDescriptionvoid
NeighborCache.vertexAdded
(GraphVertexChangeEvent<V> e) void
NeighborCache.vertexRemoved
(GraphVertexChangeEvent<V> e) -
Uses of GraphVertexChangeEvent in org.jgrapht.event
Methods in org.jgrapht.event with parameters of type GraphVertexChangeEventModifier and TypeMethodDescriptionvoid
VertexSetListener.vertexAdded
(GraphVertexChangeEvent<V> e) Notifies that a vertex has been added to the graph.void
VertexSetListener.vertexRemoved
(GraphVertexChangeEvent<V> e) Notifies that a vertex has been removed from the graph. -
Uses of GraphVertexChangeEvent in org.jgrapht.graph
Subclasses of GraphVertexChangeEvent in org.jgrapht.graphModifier and TypeClassDescriptionprivate static class
A reuseable vertex event.Methods in org.jgrapht.graph that return GraphVertexChangeEventModifier and TypeMethodDescriptionprivate GraphVertexChangeEvent
<V> DefaultListenableGraph.createGraphVertexChangeEvent
(int eventType, V vertex) Methods in org.jgrapht.graph with parameters of type GraphVertexChangeEventModifier and TypeMethodDescriptionvoid
AsSubgraph.BaseGraphListener.vertexAdded
(GraphVertexChangeEvent<V> e) Notifies that a vertex has been added to the graph.void
AsSubgraph.BaseGraphListener.vertexRemoved
(GraphVertexChangeEvent<V> e) Notifies that a vertex has been removed from the graph.