Contents | Package | Class | Tree | Deprecated | Index | Help Java 1.2 Beta 3
PREV | NEXT SHOW LISTS | HIDE LISTS

Interface java.io.Resolvable


public interface Resolvable
extends Serializable
The Resolvable interface allows a serializable class to designate designate it's replacement when it's read from the stream. Resolvable extends serializable to specify that Resolvable applies only to Serializable objects. An Externalizable object uses the same replacement mechanism by implementing both Externalizable and Resolvable.

Since:
JDK1.2
See Also:
ObjectInputStream

Method Summary
Object  readResolve()
Return an object to replace the object extracted from the stream.
 

Method Detail

readResolve

public Object readResolve()
Return an object to replace the object extracted from the stream. The object will be used in the graph in place of the original.

Contents | Package | Class | Tree | Deprecated | Index | Help Java 1.2 Beta 3
PREV | NEXT SHOW LISTS | HIDE LISTS

Submit a bug or feature
Submit comments/suggestions about new javadoc look.
Java is a trademark or registered trademark of Sun Microsystems, Inc. in the US and other countries.
Copyright 1993-1998 Sun Microsystems, Inc. 901 San Antonio Road, Palo Alto, California, 94303, U.S.A. All Rights Reserved.