Interface LayoutVertexPositionChange.Support<V>
-
- Type Parameters:
V
-
- All Known Implementing Classes:
LayoutVertexPositionChange.SupportImpl
- Enclosing interface:
- LayoutVertexPositionChange
public static interface LayoutVertexPositionChange.Support<V>
method signatures required for producers of this event model
-
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Modifier and Type Method Description void
addLayoutVertexPositionChangeListener(LayoutVertexPositionChange.Listener<V> l)
static LayoutVertexPositionChange.Support
create()
void
fireLayoutVertexPositionChanged(V vertex, Point location)
List<LayoutVertexPositionChange.Listener<V>>
getLayoutVertexPositionChangeListeners()
boolean
isFireEvents()
void
removeLayoutVertexPositionChangeListener(LayoutVertexPositionChange.Listener<V> l)
void
setFireEvents(boolean fireEvents)
-
-
-
Method Detail
-
create
static LayoutVertexPositionChange.Support create()
-
isFireEvents
boolean isFireEvents()
-
setFireEvents
void setFireEvents(boolean fireEvents)
-
addLayoutVertexPositionChangeListener
void addLayoutVertexPositionChangeListener(LayoutVertexPositionChange.Listener<V> l)
-
removeLayoutVertexPositionChangeListener
void removeLayoutVertexPositionChangeListener(LayoutVertexPositionChange.Listener<V> l)
-
getLayoutVertexPositionChangeListeners
List<LayoutVertexPositionChange.Listener<V>> getLayoutVertexPositionChangeListeners()
-
-