Java in a Nutshell Online Quick Reference for Java 1.1
Availability: JDK 1.1
public abstract interface Externalizable extends Serializable { // Public Instance Methods public abstract void readExternal(ObjectInput in) throws IOException, ClassNotFoundException; public abstract void writeExternal(ObjectOutput out) throws IOException; }