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

Method writeObject

output/java_guava/1.4.19/TreeMultiset.java:969–974  ·  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

967 */
968
969 @GwtIncompatible // java.io.ObjectOutputStream
970 private void writeObject(ObjectOutputStream stream) throws IOException {
971 stream.defaultWriteObject();
972 stream.writeObject(elementSet().comparator());
973 Serialization.writeMultiset(this, stream);
974 }
975
976 @GwtIncompatible // java.io.ObjectInputStream
977 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