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

Method serializeStaticState

serialization/AStoreCADState.java:65–67  ·  view source on GitHub ↗
(ObjectOutputStream os)

Source from the content-addressed store, hash-verified

63class 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 {

Callers 1

mainMethod · 0.95

Calls 1

writeObjectMethod · 0.80

Tested by

no test coverage detected