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