Uses of Interface
org.zkoss.xel.VariableResolver

Packages that use VariableResolver
org.zkoss.util.resource Resources and their locators and loaders. 
org.zkoss.util.resource.impl Implementation of resources and their locators and loaders. 
org.zkoss.web.servlet.dsp Dynamic Servlet Page (DSP). 
org.zkoss.web.servlet.xel XEL Utilities that depends on Servlets. 
org.zkoss.web.util.resource Utilities to access Web resources. 
org.zkoss.xel XEL - Extensible Expression Language to encapsulate different implementations, such as EL, MVEL and OGNL. 
org.zkoss.xel.util Utilties of XEL expressions. 
org.zkoss.zk.ui Interfaces of the common user-interfaces, such as Page and Component
org.zkoss.zk.ui.http HTTP relevant utilities and servlets for implementing user interfaces (implementation only). 
org.zkoss.zk.ui.impl Implementation of user interfaces and factories (implementation only). 
org.zkoss.zk.ui.metainfo Metainfo representing pages and languages (implementation only). 
org.zkoss.zk.xel.impl XEL utilities for implementation only. 
org.zkoss.zkmax.xel.util Utilities to implement XEL factories. 
org.zkoss.zkplus.cdi Utilities to support org.zkoss.zkplus.jndi Utilities to support JNDI 
 

Uses of VariableResolver in org.zkoss.util.resource
 

Methods in org.zkoss.util.resource that return VariableResolver
static VariableResolver Labels.setVariableResolver(VariableResolver resolv)
          Sets the variable resolver, which is used if an EL expression is specified.
 

Methods in org.zkoss.util.resource with parameters of type VariableResolver
static VariableResolver Labels.setVariableResolver(VariableResolver resolv)
          Sets the variable resolver, which is used if an EL expression is specified.
 

Uses of VariableResolver in org.zkoss.util.resource.impl
 

Methods in org.zkoss.util.resource.impl that return VariableResolver
 VariableResolver LabelLoader.setVariableResolver(VariableResolver resolv)
          Sets the variable resolver, which is used if an EL expression is specified.
 

Methods in org.zkoss.util.resource.impl with parameters of type VariableResolver
 VariableResolver LabelLoader.setVariableResolver(VariableResolver resolv)
          Sets the variable resolver, which is used if an EL expression is specified.
 

Uses of VariableResolver in org.zkoss.web.servlet.dsp
 

Methods in org.zkoss.web.servlet.dsp that return VariableResolver
 VariableResolver ServletDspContext.getVariableResolver()
           
 

Uses of VariableResolver in org.zkoss.web.servlet.xel
 

Classes in org.zkoss.web.servlet.xel that implement VariableResolver
 class RequestXelResolver
          A XEL variable resolver that is based on Servlet request, response, and EL.
 

Methods in org.zkoss.web.servlet.xel that return VariableResolver
 VariableResolver RequestContext.getVariableResolver()
          Returns the variable resolver.
 VariableResolver PageContext.getVariableResolver()
          The current variable resolver.
 

Uses of VariableResolver in org.zkoss.web.util.resource
 

Classes in org.zkoss.web.util.resource that implement VariableResolver
 class ServletLabelResovler
          Used with Labels to resolve XEL expressions in labels.
 

Uses of VariableResolver in org.zkoss.xel
 

Subinterfaces of VariableResolver in org.zkoss.xel
 interface VariableResolverX
          An extension of VariableResolver to have more control to resolve the variables.
 

Fields in org.zkoss.xel declared as VariableResolver
static VariableResolver Expressions.EMPTY_RESOLVER
          An empty variable resolver, i.e., it has no variable defined at all.
 

Methods in org.zkoss.xel that return VariableResolver
 VariableResolver XelContext.getVariableResolver()
          Returns the variable resolver, or null if not available.
 

Uses of VariableResolver in org.zkoss.xel.util
 

Classes in org.zkoss.xel.util that implement VariableResolver
 class SimpleResolver
          A simple resolver that retrieve variable from a map.
 

Methods in org.zkoss.xel.util that return VariableResolver
 VariableResolver SimpleResolver.getParent()
          Returns the parent, or null if no parent at all.
 VariableResolver XelContextProxy.getVariableResolver()
           
 VariableResolver SimpleXelContext.getVariableResolver()
           
 

Methods in org.zkoss.xel.util with parameters of type VariableResolver
static java.lang.Object Evaluators.resolveVariable(VariableResolver resolver, java.lang.String name)
          Resolves the variable based on the specified resolver.
static java.lang.Object Evaluators.resolveVariable(XelContext ctx, VariableResolver resolver, java.lang.Object base, java.lang.Object name)
          Resolves the variable based on the the specified context and variable resolver.
 void SimpleResolver.setParent(VariableResolver parent)
          Sets the parent.
 void SimpleXelContext.setVariableResolver(VariableResolver resolver)
          Sete the variable resovler, or null if not available.
 

Constructors in org.zkoss.xel.util with parameters of type VariableResolver
SimpleResolver(VariableResolver parent)
          Constructs a resolver with a parent.
SimpleResolver(VariableResolver parent, java.util.Map vars)
          Constructs a resolver with a parent and an object map.
SimpleXelContext(VariableResolver resolver)
           
SimpleXelContext(VariableResolver resolver, FunctionMapper mapper)
           
XelContextProxy(XelContext ctx, VariableResolver resolver)
          Replaces the variable resolver with the specified one, but the function mapper not changed.
XelContextProxy(XelContext ctx, VariableResolver resolver, FunctionMapper mapper)
          Replaces both variable resolver and function mapper.
 

Uses of VariableResolver in org.zkoss.zk.ui
 

Methods in org.zkoss.zk.ui that return VariableResolver
 VariableResolver Execution.getVariableResolver()
          Returns the variable resolver for this execution, or null if not available.
 

Methods in org.zkoss.zk.ui with parameters of type VariableResolver
 boolean Page.addVariableResolver(VariableResolver resolver)
          Adds a name resolver that will be used to resolve a variable by Page.getVariable(java.lang.String).
 boolean Page.removeVariableResolver(VariableResolver resolver)
          Removes a name resolve that was added by Page.addVariableResolver(org.zkoss.xel.VariableResolver).
 

Uses of VariableResolver in org.zkoss.zk.ui.http
 

Methods in org.zkoss.zk.ui.http that return VariableResolver
 VariableResolver ExecutionImpl.getVariableResolver()
           
 

Uses of VariableResolver in org.zkoss.zk.ui.impl
 

Methods in org.zkoss.zk.ui.impl with parameters of type VariableResolver
 boolean PageImpl.addVariableResolver(VariableResolver resolver)
           
 boolean PageImpl.removeVariableResolver(VariableResolver resolver)
           
 

Uses of VariableResolver in org.zkoss.zk.ui.metainfo
 

Methods in org.zkoss.zk.ui.metainfo that return VariableResolver
 VariableResolver VariableResolverInfo.newVariableResolver(Evaluator eval, Page page)
          Creates and returns the variable resolver for the specified page.
 VariableResolver VariableResolverInfo.newVariableResolver(PageDefinition pgdef, Page page)
          Creates and returns the variable resolver for the specified page.
 

Constructors in org.zkoss.zk.ui.metainfo with parameters of type VariableResolver
VariableResolverInfo(VariableResolver resolver)
          Constructs with an initiator that will be reuse each time VariableResolverInfo.newVariableResolver(org.zkoss.zk.ui.metainfo.PageDefinition, org.zkoss.zk.ui.Page) is called.
 

Uses of VariableResolver in org.zkoss.zk.xel.impl
 

Classes in org.zkoss.zk.xel.impl that implement VariableResolver
 class ExecutionResolver
          A variable resolver that is based on the specified execution.
 

Methods in org.zkoss.zk.xel.impl that return VariableResolver
 VariableResolver SimpleEvaluator.getVariableResolver(java.lang.Object ref)
          Returns the variable resolver, or null if not available.
 

Constructors in org.zkoss.zk.xel.impl with parameters of type VariableResolver
ExecutionResolver(Execution exec, VariableResolver parent)
          Constructs a resolver with a parent and a page.
 

Uses of VariableResolver in org.zkoss.zkmax.xel.util
 

Constructors in org.zkoss.zkmax.xel.util with parameters of type VariableResolver
ResolverMap(VariableResolver resolver)
           
 

Uses of VariableResolver in org.zkoss.zkplus.cdi
 

Classes in org.zkoss.zkplus.cdi that implement VariableResolver
 class DelegatingVariableResolver
          Generic CDI EL named managed bean resolver.
 

Uses of VariableResolver in org.zkoss.zkplus.jndi
 

Classes in org.zkoss.zkplus.jndi that implement VariableResolver
 class JndiVariableResolver
          JndiVariableResolver, a jndi variableResolver
 



Copyright © 2005-2009 Potix Corporation. All Rights Reserved. SourceForge.net Logo