Uses of Class
org.jgrapht.event.GraphVertexChangeEvent
-
Packages that use GraphVertexChangeEvent 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 GraphVertexChangeEvent in org.jgrapht.alg
Methods in org.jgrapht.alg with parameters of type GraphVertexChangeEvent Modifier and Type Method Description voidConnectivityInspector. vertexAdded(GraphVertexChangeEvent<V> e)voidDirectedNeighborIndex. vertexAdded(GraphVertexChangeEvent<V> e)voidNeighborIndex. vertexAdded(GraphVertexChangeEvent<V> e)voidConnectivityInspector. vertexRemoved(GraphVertexChangeEvent<V> e)voidDirectedNeighborIndex. vertexRemoved(GraphVertexChangeEvent<V> e)voidNeighborIndex. vertexRemoved(GraphVertexChangeEvent<V> e) -
Uses of GraphVertexChangeEvent in org.jgrapht.event
Methods in org.jgrapht.event with parameters of type GraphVertexChangeEvent Modifier and Type Method Description voidVertexSetListener. vertexAdded(GraphVertexChangeEvent<V> e)Notifies that a vertex has been added to the graph.voidVertexSetListener. 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.graph Modifier and Type Class Description private static classDefaultListenableGraph.FlyweightVertexEvent<VV>A reuseable vertex event.Methods in org.jgrapht.graph that return GraphVertexChangeEvent Modifier and Type Method Description private GraphVertexChangeEvent<V>DefaultListenableGraph. createGraphVertexChangeEvent(int eventType, V vertex)Methods in org.jgrapht.graph with parameters of type GraphVertexChangeEvent Modifier and Type Method Description voidSubgraph.BaseGraphListener. vertexAdded(GraphVertexChangeEvent<V> e)Notifies that a vertex has been added to the graph.voidSubgraph.BaseGraphListener. vertexRemoved(GraphVertexChangeEvent<V> e)Notifies that a vertex has been removed from the graph.
-