1. /*
  2. * @(#)ChangeEvent.java 1.11 01/11/29
  3. *
  4. * Copyright 2002 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.util.EventObject;
  9. /**
  10. * ChangeEvent is used to notify interested parties that
  11. * state has changed in the event source.
  12. * <p>
  13. * <strong>Warning:</strong>
  14. * Serialized objects of this class will not be compatible with
  15. * future Swing releases. The current serialization support is appropriate
  16. * for short term storage or RMI between applications running the same
  17. * version of Swing. A future release of Swing will provide support for
  18. * long term persistence.
  19. *
  20. * @version 1.11 11/29/01
  21. * @author Jeff Dinkins
  22. */
  23. public class ChangeEvent extends EventObject {
  24. /**
  25. * Constructs a ChangeEvent object.
  26. *
  27. * @param source the Object that is the source of the event
  28. * (typically <code>this</code>)
  29. */
  30. public ChangeEvent(Object source) {
  31. super(source);
  32. }
  33. }