Exemple #1
0
 /**
  * Writes the path summary to the specified output.
  *
  * @param out output stream
  * @throws IOException I/O exception
  */
 public void write(final DataOutput out) throws IOException {
   out.writeBool(root != null);
   if (root != null) root.write(out);
 }