(ObjectOutputStream stream)
| 17 | return a + "\n" + b; |
| 18 | } |
| 19 | private void writeObject(ObjectOutputStream stream) |
| 20 | throws IOException { |
| 21 | stream.defaultWriteObject(); |
| 22 | stream.writeObject(b); |
| 23 | } |
| 24 | private void readObject(ObjectInputStream stream) |
| 25 | throws IOException, ClassNotFoundException { |
| 26 | stream.defaultReadObject(); |