(ObjectInputStream os)
| 66 | serializeStaticState(ObjectOutputStream os) |
| 67 | throws IOException { os.writeObject(color); } |
| 68 | public static void |
| 69 | deserializeStaticState(ObjectInputStream os) |
| 70 | throws IOException, ClassNotFoundException { |
| 71 | color = (Color)os.readObject(); |
| 72 | } |
| 73 | Line(int xVal, int yVal, int dim) { |
| 74 | super(xVal, yVal, dim); |
| 75 | } |