コード例 #1
0
ファイル: EntityFinder.java プロジェクト: rgrishman/jet
 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();
 }