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