Esempio n. 1
0
 /** Returns a string representing the raw template text in canonical form. */
 public String toString() {
   StringWriter sw = new StringWriter();
   try {
     dump(sw);
   } catch (IOException ioe) {
     throw new RuntimeException(ioe.getMessage());
   }
   return sw.toString();
 }