Package org.olat.core.gui.control.generic.wizard

Examples of org.olat.core.gui.control.generic.wizard.StepFormController


   *      org.olat.core.gui.control.generic.wizard.StepsRunContext,
   *      org.olat.core.gui.components.form.flexible.impl.Form)
   */
  @Override
  public StepFormController getStepController(UserRequest ureq, WindowControl windowControl, StepsRunContext stepsRunContext, Form form) {
    StepFormController stepI = new UserBulkChangeStepForm00(ureq, windowControl, form, stepsRunContext);
    return stepI;
  }
View Full Code Here


    }
  }

  @Override
  public StepFormController getStepController(UserRequest ureq, WindowControl windowControl, StepsRunContext stepsRunContext, Form form) {
    StepFormController stepI = new ImportStepForm01(ureq, windowControl, form, stepsRunContext);
    return stepI;
  }
View Full Code Here

   *      org.olat.core.gui.control.WindowControl,
   *      org.olat.core.gui.control.generic.wizard.StepsRunContext,
   *      org.olat.core.gui.components.form.flexible.impl.Form)
   */
  public StepFormController getStepController(UserRequest ureq, WindowControl windowControl, StepsRunContext stepsRunContext, Form form) {
    StepFormController stepI = new ImportStepForm00(ureq, windowControl, form, stepsRunContext);
    return stepI;
  }
View Full Code Here

   *      org.olat.core.gui.control.WindowControl,
   *      org.olat.core.gui.control.generic.wizard.StepsRunContext,
   *      org.olat.core.gui.components.form.flexible.impl.Form)
   */
  public StepFormController getStepController(UserRequest ureq, WindowControl windowControl, StepsRunContext stepsRunContext, Form form) {
    StepFormController stepI = new UserBulkChangeStepForm01(ureq, windowControl, form, stepsRunContext);
    return stepI;
  }
View Full Code Here

   *      org.olat.core.gui.control.WindowControl,
   *      org.olat.core.gui.control.generic.wizard.StepsRunContext,
   *      org.olat.core.gui.components.form.flexible.impl.Form)
   */
  public StepFormController getStepController(UserRequest ureq, WindowControl windowControl, StepsRunContext stepsRunContext, Form form) {
    StepFormController stepI = new UserBulkChangeStepForm02(ureq, windowControl, form, stepsRunContext);
    return stepI;
  }
View Full Code Here

  /**
   * @see org.olat.core.gui.control.generic.wizard.BasicStep#getStepController(org.olat.core.gui.UserRequest, org.olat.core.gui.control.WindowControl, org.olat.core.gui.control.generic.wizard.StepsRunContext, org.olat.core.gui.components.form.flexible.impl.Form)
   */
  @Override
  public StepFormController getStepController(UserRequest ureq, WindowControl windowControl, StepsRunContext stepsRunContext, Form form) {
    StepFormController sfbc = new ZsuzStep00Form(ureq, windowControl, form, stepsRunContext, FormBasicController.LAYOUT_VERTICAL, null);
    return sfbc;
  }
View Full Code Here

  /**
   * @see org.olat.core.gui.control.generic.wizard.BasicStep#getStepController(org.olat.core.gui.UserRequest, org.olat.core.gui.control.WindowControl, org.olat.core.gui.control.generic.wizard.StepsRunContext, org.olat.core.gui.components.form.flexible.impl.Form)
   */
  @Override
  public StepFormController getStepController(UserRequest ureq, WindowControl windowControl, StepsRunContext stepsRunContext, Form form) {
    StepFormController sfbc = new ZsuzStep01Form(ureq, windowControl, form, stepsRunContext, FormBasicController.LAYOUT_VERTICAL, null);
    return sfbc;
  }
View Full Code Here

   *      org.olat.core.gui.control.WindowControl,
   *      org.olat.core.gui.control.generic.wizard.StepsRunContext,
   *      org.olat.core.gui.components.form.flexible.impl.Form)
   */
  public StepFormController getStepController(UserRequest ureq, WindowControl windowControl, StepsRunContext stepsRunContext, Form form) {
    StepFormController stepI = new DeletStepForm00(ureq, windowControl, form, stepsRunContext);
    return stepI;
  }
View Full Code Here

   *      org.olat.core.gui.control.WindowControl,
   *      org.olat.core.gui.control.generic.wizard.StepsRunContext,
   *      org.olat.core.gui.components.form.flexible.impl.Form)
   */
  public StepFormController getStepController(UserRequest ureq, WindowControl windowControl, StepsRunContext stepsRunContext, Form form) {
    StepFormController stepI = new DeletStepForm01(ureq, windowControl, form, stepsRunContext);
    return stepI;
  }
View Full Code Here

      setI18nTitleAndDescr("start", "start.short.desc");
      setNextStep(new StepTwo(ureq));
    }

    public StepFormController getStepController(UserRequest ureq, WindowControl windowControl, StepsRunContext runContext, Form form) {
      StepFormController stepP = new StartStepForm(ureq, windowControl, form, runContext);
      return stepP;
    }
View Full Code Here

TOP

Related Classes of org.olat.core.gui.control.generic.wizard.StepFormController

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.