1. /*
  2. * @(#)SwingPropertyChangeSupport.java 1.20 03/12/19
  3. *
  4. * Copyright 2004 Sun Microsystems, Inc. All rights reserved.
  5. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
  6. */
  7. package javax.swing.event;
  8. import java.beans.PropertyChangeSupport;
  9. /**
  10. * This subclass of java.beans.PropertyChangeSupport is identical
  11. * in functionality -- it sacrifices thread-safety (not a Swing
  12. * concern) for reduce memory consumption, which helps performance
  13. * (both big Swing concerns). Most of the overridden methods are
  14. * only necessary because all of PropertyChangeSupport's instance
  15. * data is private, without accessor methods.
  16. *
  17. * @version 1.20 12/19/03
  18. * @author unattributed
  19. */
  20. public final class SwingPropertyChangeSupport extends PropertyChangeSupport {
  21. /**
  22. * Constructs a SwingPropertyChangeSupport object.
  23. *
  24. * @param sourceBean The bean to be given as the source for any events.
  25. */
  26. public SwingPropertyChangeSupport(Object sourceBean) {
  27. super(sourceBean);
  28. }
  29. // Serialization version ID
  30. static final long serialVersionUID = 7162625831330845068L;
  31. }