MCPcopy Create free account
hub / github.com/antlr/codebuff / writeObject

Method writeObject

output/java_guava/1.4.17/TreeMultiset.java:968–973  ·  view source on GitHub ↗

@serialData the comparator, the number of distinct elements, the first element, its count, the second element, its count, and so on

(ObjectOutputStream stream)

Source from the content-addressed store, hash-verified

966 */
967
968 @GwtIncompatible // java.io.ObjectOutputStream
969 private void writeObject(ObjectOutputStream stream) throws IOException {
970 stream.defaultWriteObject();
971 stream.writeObject(elementSet().comparator());
972 Serialization.writeMultiset(this, stream);
973 }
974
975 @GwtIncompatible // java.io.ObjectInputStream
976 private void readObject(ObjectInputStream stream) throws IOException, ClassNotFoundException {

Callers

nothing calls this directly

Calls 3

writeMultisetMethod · 0.95
comparatorMethod · 0.65
elementSetMethod · 0.65

Tested by

no test coverage detected