(ObjectOutput out)
| 20 | } |
| 21 | @Override public String toString() { return s + i; } |
| 22 | @Override public void writeExternal(ObjectOutput out) |
| 23 | throws IOException { |
| 24 | System.out.println("Blip3.writeExternal"); |
| 25 | // You must do this: |
| 26 | out.writeObject(s); |
| 27 | out.writeInt(i); |
| 28 | } |
| 29 | @Override public void readExternal(ObjectInput in) |
| 30 | throws IOException, ClassNotFoundException { |
| 31 | System.out.println("Blip3.readExternal"); |
nothing calls this directly
no test coverage detected