Class LayoutSizeChange.SupportImpl<V>
- java.lang.Object
-
- org.jungrapht.visualization.layout.event.LayoutSizeChange.SupportImpl<V>
-
- All Implemented Interfaces:
LayoutSizeChange.Support<V>
- Enclosing interface:
- LayoutSizeChange
public static class LayoutSizeChange.SupportImpl<V> extends Object implements LayoutSizeChange.Support<V>
implementations for a producer of this event model
-
-
Field Summary
Fields Modifier and Type Field Description protected List<LayoutSizeChange.Listener<V>>
changeListeners
listeners for these changesprotected boolean
fireEvents
to fire or not to fire....
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
addLayoutSizeChangeListener(LayoutSizeChange.Listener<V> l)
void
fireLayoutSizeChanged(LayoutModel<V> layoutModel, int width, int height)
List<LayoutSizeChange.Listener<V>>
getLayoutSizeChangeListeners()
boolean
isFireEvents()
void
removeLayoutSizeChangeListener(LayoutSizeChange.Listener<V> l)
void
setFireEvents(boolean fireEvents)
-
-
-
Field Detail
-
fireEvents
protected boolean fireEvents
to fire or not to fire....
-
changeListeners
protected List<LayoutSizeChange.Listener<V>> changeListeners
listeners for these changes
-
-
Method Detail
-
isFireEvents
public boolean isFireEvents()
- Specified by:
isFireEvents
in interfaceLayoutSizeChange.Support<V>
-
setFireEvents
public void setFireEvents(boolean fireEvents)
- Specified by:
setFireEvents
in interfaceLayoutSizeChange.Support<V>
-
addLayoutSizeChangeListener
public void addLayoutSizeChangeListener(LayoutSizeChange.Listener<V> l)
- Specified by:
addLayoutSizeChangeListener
in interfaceLayoutSizeChange.Support<V>
-
removeLayoutSizeChangeListener
public void removeLayoutSizeChangeListener(LayoutSizeChange.Listener<V> l)
- Specified by:
removeLayoutSizeChangeListener
in interfaceLayoutSizeChange.Support<V>
-
getLayoutSizeChangeListeners
public List<LayoutSizeChange.Listener<V>> getLayoutSizeChangeListeners()
- Specified by:
getLayoutSizeChangeListeners
in interfaceLayoutSizeChange.Support<V>
-
fireLayoutSizeChanged
public void fireLayoutSizeChanged(LayoutModel<V> layoutModel, int width, int height)
- Specified by:
fireLayoutSizeChanged
in interfaceLayoutSizeChange.Support<V>
- Parameters:
layoutModel
- the layoutModelwidth
- thewidth
of theLayoutModel
height
- theheight
of theLayoutModel
-
-