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.org.jgrapht.graph Implementations of various graphs. -
-
Uses of GraphEdgeChangeEvent in org.jgrapht.alg.connectivity
Methods in org.jgrapht.alg.connectivity with parameters of type GraphEdgeChangeEvent Modifier and Type Method Description voidConnectivityInspector. edgeAdded(GraphEdgeChangeEvent<V,E> e)voidConnectivityInspector. 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 voidNeighborCache. edgeAdded(GraphEdgeChangeEvent<V,E> e)voidNeighborCache. 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 voidGraphListener. edgeAdded(GraphEdgeChangeEvent<V,E> e)Notifies that an edge has been added to the graph.voidGraphListener. edgeRemoved(GraphEdgeChangeEvent<V,E> e)Notifies that an edge has been removed from the graph.default voidGraphListener. edgeWeightUpdated(GraphEdgeChangeEvent<V,E> e)Notifies that an edge weight has been updated. -
Uses of GraphEdgeChangeEvent in org.jgrapht.graph
Subclasses of GraphEdgeChangeEvent in org.jgrapht.graph Modifier and Type Class Description private static classDefaultListenableGraph.FlyweightEdgeEvent<VV,EE>A reuseable edge event.Methods in org.jgrapht.graph that return GraphEdgeChangeEvent Modifier and Type Method Description private GraphEdgeChangeEvent<V,E>DefaultListenableGraph. createGraphEdgeChangeEvent(int eventType, E edge, V source, V target, double weight)Methods in org.jgrapht.graph with parameters of type GraphEdgeChangeEvent Modifier and Type Method Description voidAsSubgraph.BaseGraphListener. edgeAdded(GraphEdgeChangeEvent<V,E> e)Notifies that an edge has been added to the graph.voidAsSubgraph.BaseGraphListener. edgeRemoved(GraphEdgeChangeEvent<V,E> e)Notifies that an edge has been removed from the graph.
-