Examples of TACourseNode


Examples of org.olat.course.nodes.TACourseNode

      else if (menuCommand.equals(CMD_ARCHIVELOGFILES)) {
        this.contentCtr = new CourseLogsArchiveController(ureq, getWindowControl(), ores);
        main.setContent(contentCtr.getInitialComponent());
      }
      else if (menuCommand.equals(CMD_HANDEDINTASKS)) { //TACourseNode
        this.contentCtr = new GenericArchiveController(ureq, getWindowControl(), ores, new TACourseNode());
        main.setContent(contentCtr.getInitialComponent());
      }
      else if (menuCommand.equals(CMD_PROJECTBROKER)) {
        this.contentCtr = new GenericArchiveController(ureq, getWindowControl(), ores, new ProjectBrokerCourseNode());
        main.setContent(contentCtr.getInitialComponent());
View Full Code Here

Examples of org.olat.course.nodes.TACourseNode

public class TACourseNodeConfiguration implements CourseNodeConfiguration, OLATExtension {

  private static final String PACKAGE = Util.getPackageName(CourseNodeConfiguration.class);

  public CourseNode getInstance() {
    return new TACourseNode();
  }
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.