Package org.zkoss.zk.ui.impl

Examples of org.zkoss.zk.ui.impl.SimpleScope


   * @return the scope used for interpretation. It is the same as the scope
   * parameter if it is not null. Otherwise, a temporary scope is created.
   */
  public static final Scope beforeInterpret(Scope scope) {
    if (scope == null)
      scope = new SimpleScope(null);

    final Implicit impl = beforeInterpret0(scope);
    impl.setImplicit("self", scope);

    if (scope instanceof Component)
View Full Code Here


      return Collections.EMPTY_MAP;
    }
  }
  private SimpleScope attrs() {
    if (initAuxInfo().attrs == null)
      _auxinf.attrs = new SimpleScope(this);
    return _auxinf.attrs;
  }
View Full Code Here

TOP

Related Classes of org.zkoss.zk.ui.impl.SimpleScope

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.