コード例 #1
0
 public boolean save() {
   try {
     RevisionDocumentWriter.writeToDoc(this.rd, currentPath);
   } catch (Exception exp) {
     exp.printStackTrace();
     return false;
   }
   return true;
 }
コード例 #2
0
 public boolean export(String path) {
   try {
     RevisionDocumentWriter.writeToDoc(this.rd, path);
   } catch (Exception exp) {
     exp.printStackTrace();
     return false;
   }
   return true;
 }