1 /* 2 * @(#)ChangeEvent.java 1.16 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 9 import java.util.EventObject; 10 11 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 19 * appropriate for short term storage or RMI between applications running 20 * the same version of Swing. As of 1.4, support for long term storage 21 * of all JavaBeans<sup><font size="-2">TM</font></sup> 22 * has been added to the <code>java.beans</code> package. 23 * Please see {@link java.beans.XMLEncoder}. 24 * 25 * @version 1.16 12/19/03 26 * @author Jeff Dinkins 27 */ 28 public class ChangeEvent extends EventObject { 29 /** 30 * Constructs a ChangeEvent object. 31 * 32 * @param source the Object that is the source of the event 33 * (typically <code>this</code>) 34 */ 35 public ChangeEvent(Object source) { 36 super(source); 37 } 38 } 39 40