Package edu.uci.ics.jung.graph.event
Interface GraphEventListener<V,E>
- All Superinterfaces:
EventListener
An interface for classes that listen for graph events.
-
Method Summary
Modifier and TypeMethodDescriptionvoid
handleGraphEvent
(GraphEvent<V, E> evt) Method called by the process generating a graph event to which this instance is listening.
-
Method Details
-
handleGraphEvent
Method called by the process generating a graph event to which this instance is listening. The implementor of this interface is responsible for deciding what behavior is appropriate.- Parameters:
evt
- the graph event to be handled
-