Exemplo n.º 1
0
 static void writeDocRaw(Document doc, PrintStream out) throws IOException {
   out.println(doc.writeSGML(null).toString());
   out.flush();
   return;
 }
Exemplo n.º 2
0
 public static String processDocument(Document doc, AceDocument aceDoc) {
   addAnnotations(doc, aceDoc);
   return doc.writeSGML(null).toString();
 }