Package | Description |
---|---|
org.dishevelled.observable.graph |
Observable decorators for graph interfaces.
|
org.dishevelled.observable.graph.event |
Observable graph interface change event support.
|
Modifier and Type | Method and Description |
---|---|
protected void |
AbstractObservableGraph.fireWillClear()
Fire a will clear change event to all registered
VetoableGraphChangeListener s. |
protected void |
AbstractObservableGraph.fireWillCreateEdge(Node<N,E> sourceNode,
Node<N,E> targetNode,
E edgeValue)
Fire a will create edge change event to all registered
VetoableGraphChangeListener s. |
protected void |
AbstractObservableGraph.fireWillCreateNode(N nodeValue)
Fire a will create node change event to all registered
VetoableGraphChangeListener s. |
protected void |
AbstractObservableGraph.fireWillRemoveEdge(Edge<N,E> edge)
Fire a will remove edge change event to all registered
VetoableGraphChangeListener s. |
protected void |
AbstractObservableGraph.fireWillRemoveNode(Node<N,E> node)
Fire a will remove node change event to all registered
VetoableGraphChangeListener s. |
Modifier and Type | Method and Description |
---|---|
void |
ObservableGraphChangeSupport.fireWillClear()
Fire a will clear change event to all registered
VetoableGraphChangeListener s. |
void |
ObservableGraphChangeSupport.fireWillCreateEdge(Node<N,E> sourceNode,
Node<N,E> targetNode,
E edgeValue)
Fire a will create edge change event to all registered
VetoableGraphChangeListener s. |
void |
ObservableGraphChangeSupport.fireWillCreateNode(N nodeValue)
Fire a will create node create event to all registered
VetoableGraphChangeListener s. |
void |
ObservableGraphChangeSupport.fireWillRemoveEdge(Edge<N,E> edge)
Fire a will remove edge change event to all registered
VetoableGraphChangeListener s. |
void |
ObservableGraphChangeSupport.fireWillRemoveNode(Node<N,E> node)
Fire a will remove node change event to all registered
VetoableGraphChangeListener s. |
void |
VetoableGraphChangeListener.willClear(VetoableGraphChangeEvent<N,E> e)
Notify this listener that a vetoable clear change is about to be made to the observable graph.
|
void |
VetoableGraphChangeListener.willCreateEdge(VetoableGraphChangeEvent<N,E> e)
Notify this listener that a vetoable create edge change is about to be made to the observable graph.
|
void |
VetoableGraphChangeListener.willCreateNode(VetoableGraphChangeEvent<N,E> e)
Notify this listener that a vetoable create node change is about to be made to the observable graph.
|
void |
VetoableGraphChangeListener.willRemoveEdge(VetoableGraphChangeEvent<N,E> e)
Notify this listener that a vetoable remove edge change is about to be made to the observable graph.
|
void |
VetoableGraphChangeListener.willRemoveNode(VetoableGraphChangeEvent<N,E> e)
Notify this listener that a vetoable remove node change is about to be made to the observable graph.
|
Copyright (c) 2008-2013 held jointly by the individual authors. Licensed under the GNU Lesser General Public License (LGPL).