JavaTM 2 Platform Std. Ed. v1.5.0
javax.swing.event
Class SwingPropertyChangeSupport
java.lang.Object
java.beans.PropertyChangeSupport
javax.swing.event.SwingPropertyChangeSupport
- All Implemented Interfaces:
- Serializable
public final class SwingPropertyChangeSupport - extends PropertyChangeSupport
This subclass of java.beans.PropertyChangeSupport is identical
in functionality -- it sacrifices thread-safety (not a Swing
concern) for reduce memory consumption, which helps performance
(both big Swing concerns). Most of the overridden methods are
only necessary because all of PropertyChangeSupport's instance
data is private, without accessor methods.
Methods inherited from class java.beans.PropertyChangeSupport |
addPropertyChangeListener, addPropertyChangeListener, fireIndexedPropertyChange, fireIndexedPropertyChange, fireIndexedPropertyChange, firePropertyChange, firePropertyChange, firePropertyChange, firePropertyChange, getPropertyChangeListeners, getPropertyChangeListeners, hasListeners, removePropertyChangeListener, removePropertyChangeListener |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
SwingPropertyChangeSupport
public SwingPropertyChangeSupport(Object sourceBean)
- Constructs a SwingPropertyChangeSupport object.
- Parameters:
sourceBean - The bean to be given as the source for any events.
Copyright 2003 Sun Microsystems, Inc. All rights reserved
|