* @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) {