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

Examples of org.olat.core.gui.control.generic.dtabs.Activateable.activate()


    //PB//getWindowControl().getWindowBackOffice().getWindow().setAttribute("BUSPATH", site_wControl);
    getWindowControl().getWindowBackOffice().getWindow().setAttribute("BUSPATH", getWindowControl());

    if (viewIdentifier != null && (resC instanceof Activateable)) {
      Activateable a = (Activateable) resC;
      a.activate(ureq, viewIdentifier);
    }
  }

  private void doActivateSite(SiteInstance s, GuiStack gs) {
    removeCurrentCustomCSSFromView();
View Full Code Here


    if (viewIdentifier != null && c instanceof Activateable) {
      final Activateable activateable = ((Activateable) c);
      ThreadLocalUserActivityLoggerInstaller.runWithUserActivityLogger(new Runnable() {

        public void run() {
          activateable.activate(ureq, viewIdentifier);
        }
       
      }, activateable.getUserActivityLogger());
    }
View Full Code Here

      this.resC = createController(cmd, ureq);
      listenTo(resC);
      // activate certain state on controller
      if (activationArgs != null && resC instanceof Activateable){
        Activateable activatableCtr = (Activateable) resC;
        activatableCtr.activate(ureq, activationArgs);
      }
      Component resComp = resC.getInitialComponent();
      inclTitle = createVelocityContainer("incltitle");
      inclTitle.contextPut("titleString", titleStr);
      inclTitle.contextPut("command", cmd);
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.