public interface GraphChangeHandler
Modifier and Type | Method and Description |
---|---|
void |
arcCreated(Object nodeId,
Object targetNodeId,
Object arcId)
Notifies implementing object that a new arc was created between two nodes.
|
void |
arcDeleted(Object nodeId,
Object targetNodeId,
Object arcId)
Notifies implementing object that an arc between two nodes was deleted.
|
void |
nodeCreated(Object nodeId)
Notifies implementing object that a new node was created in the graph.
|
void |
nodeIdChanged(Object nodeId,
Object newId)
Notifies implementing object that a node was assigned a new id.
|
void |
nodePropertyChanged(Object nodeId,
String property,
Object oldValue,
Object newValue)
Notifies implementing object that a node's property was modified.
|
void |
nodeRemoved(Object nodeId)
Notifies implementing object that a node was removed from the graph.
|
void nodeIdChanged(Object nodeId, Object newId)
void nodeCreated(Object nodeId)
void nodeRemoved(Object nodeId)
void nodePropertyChanged(Object nodeId, String property, Object oldValue, Object newValue)
void arcCreated(Object nodeId, Object targetNodeId, Object arcId)
Copyright © 2001–2015 Apache Cayenne. All rights reserved.