Package uk.ac.reload.moonunit.contentpackaging

Examples of uk.ac.reload.moonunit.contentpackaging.SCORM12_Core


  public ScormPackageHandler(ISettingsHandler settings) throws JDOMException, IOException {
    this.settings = settings;
    // Load the Document
    loadDocument(settings.getManifestFile());
    _sequencerModel = new SequencerModel(new File(settings.getScoItemSequenceFilePath()),settings);
    _scormCore = new SCORM12_Core(this);
  }
View Full Code Here


   * @throws Exception
   */
  public NavigationViewer(ISettingsHandler settings) throws Exception {
    this.settings = settings;
    super.loadDocument(settings.getManifestFile());
    _scormCore = new SCORM12_Core(this);
    _sequencerModel = new SequencerModel(settings.getScoItemSequenceFile(), settings);
  }
View Full Code Here

TOP

Related Classes of uk.ac.reload.moonunit.contentpackaging.SCORM12_Core

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.