jdk/src/share/classes/sunw/util/EventObject.java
changeset 13385 15512350dedf
parent 13384 716ed0cb0cea
parent 13383 34e17f628599
child 13386 382651d28f25
equal deleted inserted replaced
13384:716ed0cb0cea 13385:15512350dedf
     1 /*
       
     2  * Copyright (c) 1996, 2003, Oracle and/or its affiliates. All rights reserved.
       
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
       
     4  *
       
     5  * This code is free software; you can redistribute it and/or modify it
       
     6  * under the terms of the GNU General Public License version 2 only, as
       
     7  * published by the Free Software Foundation.  Oracle designates this
       
     8  * particular file as subject to the "Classpath" exception as provided
       
     9  * by Oracle in the LICENSE file that accompanied this code.
       
    10  *
       
    11  * This code is distributed in the hope that it will be useful, but WITHOUT
       
    12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
       
    13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
       
    14  * version 2 for more details (a copy is included in the LICENSE file that
       
    15  * accompanied this code).
       
    16  *
       
    17  * You should have received a copy of the GNU General Public License version
       
    18  * 2 along with this work; if not, write to the Free Software Foundation,
       
    19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
       
    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 
       
    26 package sunw.util;
       
    27 
       
    28 /**
       
    29  * FOR BACKWARD COMPATIBILITY ONLY - DO NOT USE.
       
    30  * <p>
       
    31  * This is a backwards compatibility class to allow Java Beans that
       
    32  * were developed under JDK 1.0.2 to run correctly under JDK 1.1
       
    33  * <p>
       
    34  * To allow beans development under JDK 1.0.2, JavaSoft delivered three
       
    35  * no-op interfaces/classes (sunw.io.Serializable, sunw.util.EventObject
       
    36  * and sunw.util.EventListener) that could be downloaded into JDK 1.0.2
       
    37  * systems and which would act as placeholders for the real JDK 1.1
       
    38  * classes.
       
    39  * <p>
       
    40  * Now under JDK 1.1 we provide versions of these classes and interfaces
       
    41  * that inherit from the real version in java.util and java.io.  These
       
    42  * mean that beans developed under JDK 1.0.2 against the sunw.* classes
       
    43  * will now continue to work on JDK 1.1 and will (indirectly) inherit
       
    44  * from the approrpiate java.* interfaces/classes.
       
    45  *
       
    46  * @deprecated This is a compatibility type to allow Java Beans that
       
    47  * were developed under JDK 1.0.2 to run correctly under JDK 1.1.  The
       
    48  * corresponding JDK1.1 type is java.util.EventObject
       
    49  *
       
    50  * @see java.util.EventObject
       
    51  */
       
    52 
       
    53 public class EventObject extends java.util.EventObject {
       
    54 
       
    55     private static final long serialVersionUID = 6723767567830330255L;
       
    56 
       
    57     public EventObject(Object source) {
       
    58         super(source);
       
    59     }
       
    60 
       
    61 }