Package org.olat.modules.scorm.contentpackaging

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


   * @see ISettingsHandler#getScoItemSequenceFile()
   */
  public File getScoItemSequenceFile() {
    // check if Scormpackage has been changed so that the reload-settings.xml will be updated.
    try {
      ScormPackageHandler pm = new ScormPackageHandler(this);
      if (!sequenceFile.exists() || pm.checkIfScormPackageHasChanged()) {
        try {
          pm.buildSettings();
        } catch (NoItemFoundException e) {
          throw new OLATRuntimeException(SettingsHandlerImpl.class, "Problem loading the reload-settings.xml file. No item found in scorm item sequence file!",e);
        }
      }
    } catch (JDOMException e) {
View Full Code Here

TOP

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

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.