| |
|
| java.lang.Object java.beans.PropertyChangeSupport javax.swing.event.SwingPropertyChangeSupport
SwingPropertyChangeSupport | final public class SwingPropertyChangeSupport extends PropertyChangeSupport (Code) | | This subclass of
java.beans.PropertyChangeSupport is almost
identical in functionality. The only difference is if constructed with
SwingPropertyChangeSupport(sourceBean, true) it ensures
listeners are only ever notified on the Event Dispatch Thread.
version: 1.29 05/05/07 author: Igor Kushnirskiy |
serialVersionUID | final static long serialVersionUID(Code) | | |
SwingPropertyChangeSupport | public SwingPropertyChangeSupport(Object sourceBean)(Code) | | Constructs a SwingPropertyChangeSupport object.
Parameters: sourceBean - The bean to be given as the source for anyevents. throws: NullPointerException - if sourceBean is null |
SwingPropertyChangeSupport | public SwingPropertyChangeSupport(Object sourceBean, boolean notifyOnEDT)(Code) | | Constructs a SwingPropertyChangeSupport object.
Parameters: sourceBean - the bean to be given as the source for any events Parameters: notifyOnEDT - whether to notify listeners on the EventDispatch Thread only throws: NullPointerException - if sourceBean is null since: 1.6 |
Methods inherited from java.beans.PropertyChangeSupport | public synchronized void addPropertyChangeListener(PropertyChangeListener listener)(Code)(Java Doc) public synchronized void addPropertyChangeListener(String propertyName, PropertyChangeListener listener)(Code)(Java Doc) public void fireIndexedPropertyChange(String propertyName, int index, Object oldValue, Object newValue)(Code)(Java Doc) public void fireIndexedPropertyChange(String propertyName, int index, int oldValue, int newValue)(Code)(Java Doc) public void fireIndexedPropertyChange(String propertyName, int index, boolean oldValue, boolean newValue)(Code)(Java Doc) public void firePropertyChange(String propertyName, Object oldValue, Object newValue)(Code)(Java Doc) public void firePropertyChange(String propertyName, int oldValue, int newValue)(Code)(Java Doc) public void firePropertyChange(String propertyName, boolean oldValue, boolean newValue)(Code)(Java Doc) public void firePropertyChange(PropertyChangeEvent evt)(Code)(Java Doc) public synchronized PropertyChangeListener[] getPropertyChangeListeners()(Code)(Java Doc) public synchronized PropertyChangeListener[] getPropertyChangeListeners(String propertyName)(Code)(Java Doc) public synchronized boolean hasListeners(String propertyName)(Code)(Java Doc) public synchronized void removePropertyChangeListener(PropertyChangeListener listener)(Code)(Java Doc) public synchronized void removePropertyChangeListener(String propertyName, PropertyChangeListener listener)(Code)(Java Doc)
|
|
|
|