4 public class OOSNoCallDefault
implements Serializable
13 OOSNoCallDefault( int X
, String S
, boolean B
)
20 public boolean equals( Object o
)
22 OOSNoCallDefault oo
= (OOSNoCallDefault
)o
;
28 private void writeObject( ObjectOutputStream oos
) throws IOException
32 oos
.writeBoolean( b
);
35 private void readObject( ObjectInputStream ois
)
36 throws ClassNotFoundException
, IOException
39 s
= (String
)ois
.readObject();
40 b
= ois
.readBoolean();