Package org.olat.ims.qti.editor.beecom.parser

Examples of org.olat.ims.qti.editor.beecom.parser.ParserManager


        resumed = true;
      } else {
        unzipPackage();
        Document doc = loadQTIDocument();
        if(doc!=null) {
          ParserManager parser = new ParserManager();
          qtiDocument = (QTIDocument)parser.parse(doc);
          // grab assessment type
          Metadata meta = qtiDocument.getAssessment().getMetadata();
          String assessType = meta.getField(AssessmentInstance.QMD_LABEL_TYPE);
          if (assessType != null) {
            qtiDocument.setSurvey(assessType.equals(AssessmentInstance.QMD_ENTRY_TYPE_SURVEY));
View Full Code Here

TOP

Related Classes of org.olat.ims.qti.editor.beecom.parser.ParserManager

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.