Package org.jungrapht.visualization.util
Class DefaultChangeEventSupport
- java.lang.Object
-
- org.jungrapht.visualization.util.DefaultChangeEventSupport
-
- All Implemented Interfaces:
ChangeEventSupport
public class DefaultChangeEventSupport extends Object implements ChangeEventSupport
Basic implementation of ChangeEventSupport, using standard jdk classes- Author:
- Tom Nelson
-
-
Field Summary
Fields Modifier and Type Field Description protected ChangeEvent
changeEvent
Only oneChangeEvent
is needed instance since the event's only state is the source property.protected EventListenerList
listenerList
holds the registered listeners
-
Constructor Summary
Constructors Constructor Description DefaultChangeEventSupport(Object eventSource)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
addChangeListener(ChangeListener l)
void
fireStateChanged()
Notifies all listeners that have registered interest for notification on this event type.ChangeListener[]
getChangeListeners()
Returns an array of all theChangeListener
s added with addChangeListener().void
removeChangeListener(ChangeListener l)
Removes a ChangeListener.
-
-
-
Field Detail
-
listenerList
protected EventListenerList listenerList
holds the registered listeners
-
changeEvent
protected transient ChangeEvent changeEvent
Only oneChangeEvent
is needed instance since the event's only state is the source property. The source of events generated is always "this".
-
-
Constructor Detail
-
DefaultChangeEventSupport
public DefaultChangeEventSupport(Object eventSource)
-
-
Method Detail
-
addChangeListener
public void addChangeListener(ChangeListener l)
- Specified by:
addChangeListener
in interfaceChangeEventSupport
-
removeChangeListener
public void removeChangeListener(ChangeListener l)
Description copied from interface:ChangeEventSupport
Removes a ChangeListener.- Specified by:
removeChangeListener
in interfaceChangeEventSupport
- Parameters:
l
- the listener to be removed
-
getChangeListeners
public ChangeListener[] getChangeListeners()
Description copied from interface:ChangeEventSupport
Returns an array of all theChangeListener
s added with addChangeListener().- Specified by:
getChangeListeners
in interfaceChangeEventSupport
- Returns:
- all of the
ChangeListener
s added or an empty array if no listeners have been added
-
fireStateChanged
public void fireStateChanged()
Notifies all listeners that have registered interest for notification on this event type. The event instance is lazily created. The primary listeners will be views that need to be repainted because of changes in this model instance- Specified by:
fireStateChanged
in interfaceChangeEventSupport
- See Also:
EventListenerList
-
-