Ejemplo n.º 1
0
 public boolean save() {
   try {
     RevisionDocumentWriter.writeToDoc(this.rd, currentPath);
   } catch (Exception exp) {
     exp.printStackTrace();
     return false;
   }
   return true;
 }
Ejemplo n.º 2
0
 public boolean export(String path) {
   try {
     RevisionDocumentWriter.writeToDoc(this.rd, path);
   } catch (Exception exp) {
     exp.printStackTrace();
     return false;
   }
   return true;
 }