(ObjectInput in)
| 27 | out.writeInt(i); |
| 28 | } |
| 29 | @Override public void readExternal(ObjectInput in) |
| 30 | throws IOException, ClassNotFoundException { |
| 31 | System.out.println("Blip3.readExternal"); |
| 32 | // You must do this: |
| 33 | s = (String)in.readObject(); |
| 34 | i = in.readInt(); |
| 35 | } |
| 36 | public static void main(String[] args) { |
| 37 | System.out.println("Constructing objects:"); |
| 38 | Blip3 b3 = new Blip3("A String ", 47); |
nothing calls this directly
no test coverage detected