net.sourceforge.e4graph
Interface NodeAdditionListener
- All Superinterfaces:
- java.util.EventListener
- public interface NodeAdditionListener
- extends java.util.EventListener
The listener interface for receiving node addition events. The class that is
interested in processing a node addition event implements this interface,
and the object created with that class is registered with a storage, using
the storage's addNodeAdditionListener method. When the node addition
event occurs, that object's nodeAdded method is invoked.
- Author:
- Ryan Shaw
- See Also:
Storage.addNodeAdditionListener(net.sourceforge.e4graph.NodeAdditionListener)
Method Summary |
void |
nodeAdded(Node n)
Invoked when a node is added to the storage with which this listener
is registered. |
nodeAdded
public void nodeAdded(Node n)
- Invoked when a node is added to the storage with which this listener
is registered.
- Parameters:
m
- the node that was added
Copyright (c) 2001, Silver Egg Technology Co., Ltd.