예제 #1
0
 static void writeDocRaw(Document doc, PrintStream out) throws IOException {
   out.println(doc.writeSGML(null).toString());
   out.flush();
   return;
 }
예제 #2
0
파일: APFtoXML.java 프로젝트: rgrishman/jet
 public static String processDocument(Document doc, AceDocument aceDoc) {
   addAnnotations(doc, aceDoc);
   return doc.writeSGML(null).toString();
 }