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 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