FileDocCategorySizeDatePackage
SwingPropertyChangeSupport.javaAPI DocJava SE 5 API1123Fri Aug 26 14:58:00 BST 2005javax.swing.event

SwingPropertyChangeSupport

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.
version
1.20 12/19/03
author
unattributed

Fields Summary
static final long
serialVersionUID
Constructors Summary
public SwingPropertyChangeSupport(Object sourceBean)
Constructs a SwingPropertyChangeSupport object.

param
sourceBean The bean to be given as the source for any events.

        super(sourceBean);
    
Methods Summary