KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > sunw > io > Serializable


1 /*
2  * @(#)Serializable.java 1.13 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  
8 package sunw.io;
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 appropriate 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.io.Serializable
31  *
32  * @see java.io.Serializable
33  */

34
35 public interface Serializable extends java.io.Serializable JavaDoc {
36 }
37
Popular Tags