MCPcopy Index your code
hub / github.com/BruceEckel/OnJava8-Examples / deserializeStaticState

Method deserializeStaticState

serialization/AStoreCADState.java:68–72  ·  view source on GitHub ↗
(ObjectInputStream os)

Source from the content-addressed store, hash-verified

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 }

Callers 1

mainMethod · 0.95

Calls 1

readObjectMethod · 0.80

Tested by

no test coverage detected