Examples of MSCourseNodeRunController


Examples of org.olat.course.nodes.ms.MSCourseNodeRunController

      Translator trans = new PackageTranslator(PACKAGE, ureq.getLocale());
      String title = trans.translate("guestnoaccess.title");
      String message = trans.translate("guestnoaccess.message");
      controller = MessageUIFactory.createInfoMessage(ureq, wControl, title, message);
    } else {
      controller = new MSCourseNodeRunController(ureq, wControl, userCourseEnv, this, true);
    }
   
    Controller wrappedCtrl = TitledWrapperHelper.getWrapper(ureq, wControl, controller, this, "o_ms_icon");
    return new NodeRunConstructionResult(wrappedCtrl);
  }
View Full Code Here

Examples of org.olat.course.nodes.ms.MSCourseNodeRunController

      content.put("solutionController", solutionController.getInitialComponent());
      content.contextPut("hasSolution", Boolean.TRUE);
    }
       
    if (hasScoring && !previewMode) {
      scoringController = new MSCourseNodeRunController(ureq, getWindowControl(), userCourseEnv, (AssessableCourseNode) ne.getCourseNode(), false);
      content.put("scoringController", scoringController.getInitialComponent());
      content.contextPut("hasScoring", Boolean.TRUE);
    }
   
    // push title and learning objectives, only visible on intro page
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.