| java.io.Externalizable
All known Subclasses: java.awt.datatransfer.DataFlavor,
Externalizable | public interface Externalizable extends Serializable(Code) | | Objects that want to be serialized/deserialized using
ObjectOutputStream/ObjectInputStream but defining their own byte
representation should implement this interface.
|
writeExternal | public void writeExternal(ObjectOutput output) throws IOException(Code) | | Writes the receiver to the ObjectOutput output .
Parameters: output - an ObjectOutput where to write the object throws: IOException - If an error occurs attempting to write to the ObjectOutput. |
|
|