< prev index next >

src/java.desktop/share/classes/javax/swing/event/ChangeEvent.java

Print this page




  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 package javax.swing.event;
  26 
  27 import java.util.EventObject;
  28 
  29 
  30 /**
  31  * ChangeEvent is used to notify interested parties that
  32  * state has changed in the event source.
  33  * <p>
  34  * <strong>Warning:</strong>
  35  * Serialized objects of this class will not be compatible with
  36  * future Swing releases. The current serialization support is
  37  * appropriate for short term storage or RMI between applications running
  38  * the same version of Swing.  As of 1.4, support for long term storage
  39  * of all JavaBeans&trade;
  40  * has been added to the <code>java.beans</code> package.
  41  * Please see {@link java.beans.XMLEncoder}.
  42  *
  43  * @author Jeff Dinkins
  44  */
  45 @SuppressWarnings("serial")
  46 public class ChangeEvent extends EventObject {
  47     /**
  48      * Constructs a ChangeEvent object.
  49      *
  50      * @param source  the Object that is the source of the event
  51      *                (typically <code>this</code>)
  52      */
  53     public ChangeEvent(Object source) {
  54         super(source);
  55     }
  56 }


  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 package javax.swing.event;
  26 
  27 import java.util.EventObject;
  28 
  29 
  30 /**
  31  * ChangeEvent is used to notify interested parties that
  32  * state has changed in the event source.
  33  * <p>
  34  * <strong>Warning:</strong>
  35  * Serialized objects of this class will not be compatible with
  36  * future Swing releases. The current serialization support is
  37  * appropriate for short term storage or RMI between applications running
  38  * the same version of Swing.  As of 1.4, support for long term storage
  39  * of all JavaBeans&trade;
  40  * has been added to the {@code java.beans} package.
  41  * Please see {@link java.beans.XMLEncoder}.
  42  *
  43  * @author Jeff Dinkins
  44  */
  45 @SuppressWarnings("serial")
  46 public class ChangeEvent extends EventObject {
  47     /**
  48      * Constructs a ChangeEvent object.
  49      *
  50      * @param source  the Object that is the source of the event
  51      *                (typically {@code this})
  52      */
  53     public ChangeEvent(Object source) {
  54         super(source);
  55     }
  56 }
< prev index next >