Uses of Class
org.jgrapht.event.GraphEdgeChangeEvent
-
Packages that use GraphEdgeChangeEvent Package Description org.jgrapht.alg.connectivity Algorithms dealing with various connectivity aspects of a graph.org.jgrapht.alg.util Utilities used by JGraphT algorithms.org.jgrapht.event Event classes and listener interfaces, used to provide a change notification mechanism on graph modification events. -
-
Uses of GraphEdgeChangeEvent in org.jgrapht.alg.connectivity
Methods in org.jgrapht.alg.connectivity with parameters of type GraphEdgeChangeEvent Modifier and Type Method Description void
ConnectivityInspector. edgeAdded(GraphEdgeChangeEvent<V,E> e)
void
ConnectivityInspector. edgeRemoved(GraphEdgeChangeEvent<V,E> e)
-
Uses of GraphEdgeChangeEvent in org.jgrapht.alg.util
Methods in org.jgrapht.alg.util with parameters of type GraphEdgeChangeEvent Modifier and Type Method Description void
NeighborCache. edgeAdded(GraphEdgeChangeEvent<V,E> e)
void
NeighborCache. edgeRemoved(GraphEdgeChangeEvent<V,E> e)
-
Uses of GraphEdgeChangeEvent in org.jgrapht.event
Methods in org.jgrapht.event with parameters of type GraphEdgeChangeEvent Modifier and Type Method Description void
GraphListener. edgeAdded(GraphEdgeChangeEvent<V,E> e)
Notifies that an edge has been added to the graph.void
GraphListener. edgeRemoved(GraphEdgeChangeEvent<V,E> e)
Notifies that an edge has been removed from the graph.default void
GraphListener. edgeWeightUpdated(GraphEdgeChangeEvent<V,E> e)
Notifies that an edge weight has been updated.
-