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