/**
  * Retrieves a multi-line string representation of this backup info structure.
  *
  * @return A multi-line string representation of this backup info structure.
  */
 public String toString() {
   StringBuilder buffer = new StringBuilder();
   toString(buffer);
   return buffer.toString();
 }