salvo.jesus.graph
Interface GraphRemoveEdgeListener
- All Superinterfaces:
- java.util.EventListener, java.io.Serializable
public interface GraphRemoveEdgeListener
- extends java.util.EventListener, java.io.Serializable
The listener interface for receiving notification when an Edge is
is about to be removed from a Graph.
Implementations of this interface should be registered with a Graph,
via the Graph's addGraphRemoveEdgeListener(), to be notified
when an Edge is about to be removed from the Graph.
- Author:
- Jesus M. Salvo Jr.
Method Summary |
void |
edgeRemoved(GraphRemoveEdgeEvent e)
Once implementations of this interface are registered with a Graph,
this method is automatically called whenever an Edge is about to be
removed from the Graph object. |
edgeRemoved
void edgeRemoved(GraphRemoveEdgeEvent e)
- Once implementations of this interface are registered with a Graph,
this method is automatically called whenever an Edge is about to be
removed from the Graph object.
- Parameters:
e
- GraphRemoveEdgeEvent object that also specifies the Edge
that is about to be removed from the graph