Uses of Class
org.jgrapht.event.GraphEdgeChangeEvent
-
Packages that use GraphEdgeChangeEvent Package Description 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 GraphEdgeChangeEvent in org.jgrapht.alg
Methods in org.jgrapht.alg with parameters of type GraphEdgeChangeEvent Modifier and Type Method Description void
ConnectivityInspector. edgeAdded(GraphEdgeChangeEvent<V,E> e)
void
DirectedNeighborIndex. edgeAdded(GraphEdgeChangeEvent<V,E> e)
void
NeighborIndex. edgeAdded(GraphEdgeChangeEvent<V,E> e)
void
ConnectivityInspector. edgeRemoved(GraphEdgeChangeEvent<V,E> e)
void
DirectedNeighborIndex. edgeRemoved(GraphEdgeChangeEvent<V,E> e)
void
NeighborIndex. 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. -
Uses of GraphEdgeChangeEvent in org.jgrapht.graph
Subclasses of GraphEdgeChangeEvent in org.jgrapht.graph Modifier and Type Class Description private static class
DefaultListenableGraph.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)
Methods in org.jgrapht.graph with parameters of type GraphEdgeChangeEvent Modifier and Type Method Description void
Subgraph.BaseGraphListener. edgeAdded(GraphEdgeChangeEvent<V,E> e)
Notifies that an edge has been added to the graph.void
Subgraph.BaseGraphListener. edgeRemoved(GraphEdgeChangeEvent<V,E> e)
Notifies that an edge has been removed from the graph.
-