Package edu.uci.ics.jung.graph.event
Interface GraphEventListener<V,E>
-
- All Superinterfaces:
java.util.EventListener
public interface GraphEventListener<V,E> extends java.util.EventListener
An interface for classes that listen for graph events.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
handleGraphEvent(GraphEvent<V,E> evt)
Method called by the process generating a graph event to which this instance is listening.
-
-
-
Method Detail
-
handleGraphEvent
void handleGraphEvent(GraphEvent<V,E> evt)
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
-
-