Examples of TACourseNodeRunController


Examples of org.olat.course.nodes.ta.TACourseNodeRunController

      Translator trans = new PackageTranslator(PACKAGE, ureq.getLocale());
      String title = trans.translate(NLS_GUESTNOACCESS_TITLE);
      String message = trans.translate(NLS_GUESTNOACCESS_MESSAGE);
      controller = MessageUIFactory.createInfoMessage(ureq, wControl, title, message);
    } else {
      controller = new TACourseNodeRunController(ureq, wControl, userCourseEnv, ne, false);
    }
    Controller ctrl = TitledWrapperHelper.getWrapper(ureq, wControl, controller, this, "o_ta_icon");
    return new NodeRunConstructionResult(ctrl);
  }
View Full Code Here

Examples of org.olat.course.nodes.ta.TACourseNodeRunController

   *      org.olat.course.run.userview.UserCourseEnvironment,
   *      org.olat.course.run.userview.NodeEvaluation)
   */
  @Override
  public Controller createPreviewController(UserRequest ureq, WindowControl wControl, UserCourseEnvironment userCourseEnv, NodeEvaluation ne) {
    return new TACourseNodeRunController(ureq, wControl, userCourseEnv, ne, true);
  }
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.