KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > sunw > util > EventObject


1 /*
2  * @(#)EventObject.java 1.14 05/11/17
3  *
4  * Copyright 2006 Sun Microsystems, Inc. All rights reserved.
5  * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
6  */

7  
8 package sunw.util;
9
10 /**
11  * FOR BACKWARD COMPATIBILITY ONLY - DO NOT USE.
12  * <p>
13  * This is a backwards compatibility class to allow Java Beans that
14  * were developed under JDK 1.0.2 to run correctly under JDK 1.1
15  * <p>
16  * To allow beans development under JDK 1.0.2, JavaSoft delivered three
17  * no-op interfaces/classes (sunw.io.Serializable, sunw.util.EventObject
18  * and sunw.util.EventListener) that could be downloaded into JDK 1.0.2
19  * systems and which would act as placeholders for the real JDK 1.1
20  * classes.
21  * <p>
22  * Now under JDK 1.1 we provide versions of these classes and interfaces
23  * that inherit from the real version in java.util and java.io. These
24  * mean that beans developed under JDK 1.0.2 against the sunw.* classes
25  * will now continue to work on JDK 1.1 and will (indirectly) inherit
26  * from the approrpiate java.* interfaces/classes.
27  *
28  * @deprecated This is a compatibility type to allow Java Beans that
29  * were developed under JDK 1.0.2 to run correctly under JDK 1.1. The
30  * corresponding JDK1.1 type is java.util.EventObject
31  *
32  * @see java.util.EventObject
33  */

34
35 public class EventObject extends java.util.EventObject JavaDoc {
36
37     private static final long serialVersionUID = 6723767567830330255L;
38
39     public EventObject(Object JavaDoc source) {
40     super(source);
41     }
42
43 }
44
Popular Tags