Package org.olat.modules.scorm.contentpackaging

Examples of org.olat.modules.scorm.contentpackaging.NavigationViewer


   */
  private void init() {
    // Make sure its there
    if (scormSettingsHandler.getManifestFile().exists()) {
      try {
        _navViewer = new NavigationViewer(scormSettingsHandler);
      } catch (Exception ex) {
        throw new OLATRuntimeException(ScormManager.class, "Could not load manifest",ex);
      }
      // Package Links - use a clone so we can add referenced elements
      Element manifestRoot = (Element) _navViewer.getRootElement().clone();
View Full Code Here

TOP

Related Classes of org.olat.modules.scorm.contentpackaging.NavigationViewer

Copyright © 2018 www.massapicom. 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.