/** Dump the raw template in canonical form. */
 public void dump(Writer out) throws IOException {
   out.write(rootElement.getCanonicalForm());
 }
 /** Dump the raw template in canonical form. */
 public void dump(PrintStream ps) {
   ps.print(rootElement.getCanonicalForm());
 }