(ObjectOutputStream os)
| 63 | class Line extends Shape { |
| 64 | private static Color color = Color.RED; |
| 65 | public static void |
| 66 | serializeStaticState(ObjectOutputStream os) |
| 67 | throws IOException { os.writeObject(color); } |
| 68 | public static void |
| 69 | deserializeStaticState(ObjectInputStream os) |
| 70 | throws IOException, ClassNotFoundException { |