Package org.zkoss.zk.ui.sys

Examples of org.zkoss.zk.ui.sys.UiEngine.activate()


  /** Safe to be called even if the Web application has been destroyed
   */
  private void safeActivate(Execution exec) {
    final UiEngine uieng = ((WebAppCtrl)_wapp).getUiEngine();
    if (uieng != null) {
      uieng.activate(exec);
    } else {
      _exec = exec;
      ExecutionsCtrl.setCurrent(exec);
    }
  }
View Full Code Here


      final DesktopCtrl desktopCtrl = (DesktopCtrl)desktop;

      final Execution oldexec = Executions.getCurrent();
      final Execution exec = new ExecutionImpl(
        _ctx, request, response, desktop, null);
      uieng.activate(exec);

      final Configuration config = wapp.getConfiguration();
      boolean err = false;
      try {
        config.invokeExecutionInits(exec, oldexec);
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.