Package org.zkoss.zk.ui.sys

Examples of org.zkoss.zk.ui.sys.DesktopCache.sessionDidActivate()


  }
  /** Invokes {@link #getDesktopCache}'s {@link DesktopCache#sessionDidActivate}.
   */
  public void sessionDidActivate(Session sess) {
    final DesktopCache dc = ((SessionCtrl)sess).getDesktopCache();
    if (dc != null) dc.sessionDidActivate(sess);
  }

  public void start(WebApp wapp) {
    _wapp = wapp;
  }
View Full Code Here


  }
  /** Invokes {@link #getDesktopCache}'s {@link DesktopCache#sessionDidActivate}.
   */
  public void sessionDidActivate(Session sess) {
    DesktopCache dc = (DesktopCache)sess.getAttribute(ATTR_CACHE);
    if (dc != null) dc.sessionDidActivate(sess);
  }

  public void start(WebApp wapp) {
    //ignore it
  }
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.