public interface GraphChangedListener
| Modifier and Type | Method and Description |
|---|---|
void |
edgeAdded(Edge edge)
Raised after a new edge is added.
|
void |
edgePropertyChanged(Edge edge,
String key,
Object oldValue,
Object setValue)
Raised after the property of a edge changed.
|
void |
edgePropertyRemoved(Edge edge,
String key,
Object removedValue)
Raised after an edge property was removed.
|
void |
edgeRemoved(Edge edge,
Map<String,Object> props)
Raised after an edge was removed from the graph.
|
void |
vertexAdded(Vertex vertex)
Raised when a new Vertex is added.
|
void |
vertexPropertyChanged(Vertex vertex,
String key,
Object oldValue,
Object setValue)
Raised after the property of a vertex changed.
|
void |
vertexPropertyRemoved(Vertex vertex,
String key,
Object removedValue)
Raised after a vertex property was removed.
|
void |
vertexRemoved(Vertex vertex,
Map<String,Object> props)
Raised after a vertex was removed from the graph.
|
void vertexAdded(Vertex vertex)
vertex - the vertex that was addedvoid vertexPropertyChanged(Vertex vertex, String key, Object oldValue, Object setValue)
vertex - the vertex that changedkey - the key of the property that changedsetValue - the new value of the propertyvoid vertexPropertyRemoved(Vertex vertex, String key, Object removedValue)
vertex - the vertex that changedkey - the key that was removedremovedValue - the value of the property that was removedvoid vertexRemoved(Vertex vertex, Map<String,Object> props)
vertex - the vertex that was removedprops - the properties of the removed vertexvoid edgeAdded(Edge edge)
edge - the edge that was addedvoid edgePropertyChanged(Edge edge, String key, Object oldValue, Object setValue)
edge - the edge that changedkey - the key of the property that changedsetValue - the new value of the propertyvoid edgePropertyRemoved(Edge edge, String key, Object removedValue)
edge - the edge that changedkey - the key that was removedremovedValue - the value of the property that was removedCopyright © 2010-2014. All Rights Reserved.