1. /*
  2. * @(#)ChangeEvent.java 1.12 00/02/02
  3. *
  4. * Copyright 1997-2000 Sun Microsystems, Inc. All Rights Reserved.
  5. *
  6. * This software is the proprietary information of Sun Microsystems, Inc.
  7. * Use is subject to license terms.
  8. *
  9. */
  10. package javax.swing.event;
  11. import java.util.EventObject;
  12. /**
  13. * ChangeEvent is used to notify interested parties that
  14. * state has changed in the event source.
  15. * <p>
  16. * <strong>Warning:</strong>
  17. * Serialized objects of this class will not be compatible with
  18. * future Swing releases. The current serialization support is appropriate
  19. * for short term storage or RMI between applications running the same
  20. * version of Swing. A future release of Swing will provide support for
  21. * long term persistence.
  22. *
  23. * @version 1.12 02/02/00
  24. * @author Jeff Dinkins
  25. */
  26. public class ChangeEvent extends EventObject {
  27. /**
  28. * Constructs a ChangeEvent object.
  29. *
  30. * @param source the Object that is the source of the event
  31. * (typically <code>this</code>)
  32. */
  33. public ChangeEvent(Object source) {
  34. super(source);
  35. }
  36. }