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

Method writeObject

serialization/SerialCtl.java:19–23  ·  view source on GitHub ↗
(ObjectOutputStream stream)

Source from the content-addressed store, hash-verified

17 return a + "\n" + b;
18 }
19 private void writeObject(ObjectOutputStream stream)
20 throws IOException {
21 stream.defaultWriteObject();
22 stream.writeObject(b);
23 }
24 private void readObject(ObjectInputStream stream)
25 throws IOException, ClassNotFoundException {
26 stream.defaultReadObject();

Callers 11

mainMethod · 0.80
mainMethod · 0.80
writeExternalMethod · 0.80
mainMethod · 0.80
mainMethod · 0.80
mainMethod · 0.80
mainMethod · 0.80
serializeStaticStateMethod · 0.80
mainMethod · 0.80
mainMethod · 0.80
mainMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected