Posted By:
Ibha_Sowanni
Posted On:
Tuesday, March 29, 2005 05:33 AM
It is written in documentation that if writeObject and readObject methods are there they must have the following exact signatures
private void writeObject(java.io.ObjectOutputStream out) throws IOException
private void readObject(java.io.ObjectInputStream in) throws IOException, ClassNotFoundException;
If the Serializable interface is empty then how and where are the signatures of these methods checked?