Package org.olat.course.run.navigation

Examples of org.olat.course.run.navigation.NodeRunConstructionResult


   */
  public NodeRunConstructionResult createNodeRunConstructionResult(UserRequest ureq, WindowControl wControl,
      UserCourseEnvironment userCourseEnv, NodeEvaluation ne, String nodecmd) {
    CalRunController calCtlr = new CalRunController(wControl, ureq, this, userCourseEnv.getCourseEnvironment(), ne);
    Controller wrapperCtrl = TitledWrapperHelper.getWrapper(ureq, wControl, calCtlr, this, "o_cal_icon");
    return new NodeRunConstructionResult(wrapperCtrl);
  }
View Full Code Here


    } else {
      controller = new DENRunController(ureq, wControl, getModuleConfiguration(), this);
    }
   
    Controller ctrl = TitledWrapperHelper.getWrapper(ureq, wControl, controller, this, "o_en_icon");
    return new NodeRunConstructionResult(ctrl);
  }
View Full Code Here

  public NodeRunConstructionResult createNodeRunConstructionResult(UserRequest ureq, WindowControl wControl,
      UserCourseEnvironment userCourseEnv, NodeEvaluation ne, String nodecmd) {
    //FIXME:gs:a nodecmd has now the subsubId in it -> pass to DialogCourseNodeRunController below
    DialogCourseNodeRunController ctrl = new DialogCourseNodeRunController(ureq, userCourseEnv, wControl, this, ne);
    Controller wrappedCtrl = TitledWrapperHelper.getWrapper(ureq, wControl, ctrl, this, "o_dialog_icon");
    return new NodeRunConstructionResult(wrappedCtrl);
  }
View Full Code Here

      UserCourseEnvironment userCourseEnv, NodeEvaluation ne, String nodecmd) {
    AssessmentManager am = userCourseEnv.getCourseEnvironment().getAssessmentManager();
    IQSecurityCallback sec = new CourseIQSecurityCallback(this, am, ureq.getIdentity());
    IQRunController runController = new IQRunController(userCourseEnv, getModuleConfiguration(), sec, ureq, wControl, this);
    Controller ctrl = TitledWrapperHelper.getWrapper(ureq, wControl, runController, this, "o_iqself_icon");
    return new NodeRunConstructionResult(ctrl);
  }
View Full Code Here

      controller = MessageUIFactory.createInfoMessage(ureq, wControl, title, message);
    } else {
      controller = ProjectBrokerControllerFactory.createRunController(ureq, wControl,userCourseEnv, ne);
    }
    Controller wrapperCtrl = TitledWrapperHelper.getWrapper(ureq, wControl, controller, this, "o_projectbroker_icon");
    return new NodeRunConstructionResult(wrapperCtrl);
  }
View Full Code Here

TOP

Related Classes of org.olat.course.run.navigation.NodeRunConstructionResult

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.