Examples of archiveNodeData()


Examples of org.olat.course.nodes.CourseNode.archiveNodeData()

  /**
   * @see org.olat.core.util.tree.Visitor#visit(org.olat.core.util.nodes.INode)
   */
  public void visit(INode node) {
    CourseNode cn = (CourseNode) node;
    cn.archiveNodeData(locale, course, exportPath, charset);
  }
}

class NodeDeletionVisitor implements Visitor {

View Full Code Here

Examples of org.olat.course.nodes.CourseNode.archiveNodeData()

        cetn.removeFromParent();
        if (!cetn.isNewnode()) {
          // only clean up and archive of nodes which were already in run
          // save data, remove references
          deleteRefs(oldCn);
          oldCn.archiveNodeData(locale, course, exportDirectory, charset);
          // 2) delete all user data
          oldCn.cleanupOnDelete(course);
        }
      }
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.