|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use XelContext | |
---|---|
org.zkoss.bind.impl | Core Implementation for ZK Bind |
org.zkoss.bind.xel | XEL for ZK Bind |
org.zkoss.bind.xel.zel | ZEL of XEL for ZK Bind |
org.zkoss.web.servlet.dsp | Dynamic Servlet Page (DSP). |
org.zkoss.web.servlet.dsp.impl | Classes used to implement DSP. |
org.zkoss.xel | XEL - Extensible Expression Language to encapsulate different implementations, such as EL, MVEL and OGNL. |
org.zkoss.xel.el | This implementation is based on zcommons-EL. |
org.zkoss.xel.util | Utilties of XEL expressions. |
org.zkoss.xel.zel | This implementation is based on ZEL 2.2 (Similar to EL 2.2). |
org.zkoss.zk.ui | Interfaces of the common user-interfaces, such as Page and Component. |
org.zkoss.zk.ui.impl | Implementation of user interfaces and factories (implementation only). |
org.zkoss.zk.ui.sys | Internal interfaces of user interfaces and factories (behind the scene). |
org.zkoss.zk.xel.impl | XEL utilities for implementation only. |
org.zkoss.zkmax.xel.el | This implementation is based on Apache Commons EL, ApacheELFactory. |
org.zkoss.zkmax.xel.el21 | This implementation is based on JSP 2.1 EL. |
org.zkoss.zkmax.xel.mvel | A XEL implemetation based on MVEL. |
org.zkoss.zkmax.xel.ognl | A XEL implemetation based on OGNL. |
org.zkoss.zkplus.cdi | Utilities to support Contexts and Dependency Injection(JSR-299). |
Uses of XelContext in org.zkoss.bind.impl |
---|
Methods in org.zkoss.bind.impl that return XelContext | |
---|---|
protected XelContext |
BindEvaluatorXImpl.newXelContext(BindContext ctx,
Component comp)
|
Uses of XelContext in org.zkoss.bind.xel |
---|
Methods in org.zkoss.bind.xel with parameters of type XelContext | |
---|---|
protected ELContext |
BindXelFactory.newELContext(XelContext xelc)
|
protected ELContext |
BindXelExpression.newELContext(XelContext xelc)
|
Expression |
BindXelFactory.parseExpression(XelContext xelc,
java.lang.String expression,
java.lang.Class expectedType)
|
Uses of XelContext in org.zkoss.bind.xel.zel |
---|
Methods in org.zkoss.bind.xel.zel with parameters of type XelContext | |
---|---|
protected ELResolver |
BindELContext.newELResolver(XelContext xelc)
|
Constructors in org.zkoss.bind.xel.zel with parameters of type XelContext | |
---|---|
BindELContext(XelContext xelc)
|
|
BindELResolver(XelContext ctx)
|
Uses of XelContext in org.zkoss.web.servlet.dsp |
---|
Methods in org.zkoss.web.servlet.dsp with parameters of type XelContext | |
---|---|
void |
Interpreter.interpret(DspContext dc,
java.lang.String content,
java.lang.String ctype,
XelContext xelc)
Interprets the specified content and generates the result to the output specified in DspContext . |
Interpretation |
Interpreter.parse(java.lang.String content,
java.lang.String ctype,
XelContext xelc,
Locator loc)
Parses a content to a meta format called Interpretation . |
Uses of XelContext in org.zkoss.web.servlet.dsp.impl |
---|
Methods in org.zkoss.web.servlet.dsp.impl with parameters of type XelContext | |
---|---|
Interpretation |
Parser.parse(java.lang.String content,
java.lang.String ctype,
XelContext xelc,
Locator loc)
Parses the content into a meta format |
Uses of XelContext in org.zkoss.xel |
---|
Methods in org.zkoss.xel with parameters of type XelContext | |
---|---|
java.lang.Object |
Expression.evaluate(XelContext ctx)
Evaluates an expression that was previously prepared. |
static java.lang.Object |
Expressions.evaluate(XelContext ctx,
java.lang.String expression,
java.lang.Class<?> expectedType)
Evaluates an expression. |
java.lang.Object |
ExpressionFactory.evaluate(XelContext ctx,
java.lang.String expression,
java.lang.Class<?> expectedType)
Evaluates an expression. |
java.lang.Class |
ExpressionX.getType(XelContext xelc)
Returns the result type of this expression. |
ValueReference |
ExpressionX.getValueReference(XelContext xelc)
Returns the target bean and field name of this expression. |
boolean |
ExpressionX.isReadOnly(XelContext ctx)
Returns whether this is a read only (cannot setValue) expression. |
Expression |
ExpressionFactory.parseExpression(XelContext ctx,
java.lang.String expression,
java.lang.Class<?> expectedType)
Prepares (a.k.a., compiles) an expression. |
java.lang.Object |
VariableResolverX.resolveVariable(XelContext ctx,
java.lang.Object base,
java.lang.Object name)
Resolves the the given variable on the given base object. |
void |
ExpressionX.setValue(XelContext ctx,
java.lang.Object value)
Set values into the property resolved by this expression. |
Uses of XelContext in org.zkoss.xel.el |
---|
Methods in org.zkoss.xel.el with parameters of type XelContext | |
---|---|
java.lang.Object |
ELFactory.evaluate(XelContext xelc,
java.lang.String expression,
java.lang.Class expectedType)
|
Expression |
ELFactory.parseExpression(XelContext xelc,
java.lang.String expression,
java.lang.Class expectedType)
|
Uses of XelContext in org.zkoss.xel.util |
---|
Classes in org.zkoss.xel.util that implement XelContext | |
---|---|
class |
SimpleXelContext
A simple implementation of XelContext . |
class |
XelContextProxy
A proxy to replace the variable resolver of a given XEL context. |
Methods in org.zkoss.xel.util with parameters of type XelContext | |
---|---|
static java.lang.Object |
Evaluators.resolveVariable(XelContext ctx,
java.lang.Object base,
java.lang.Object name)
Resolves the variable based on the specified context. |
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. |
Constructors in org.zkoss.xel.util with parameters of type XelContext | |
---|---|
XelContextProxy(XelContext ctx,
FunctionMapper mapper)
Replaces the function mapper with the specified one, but the variable resolver not changed. |
|
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 XelContext in org.zkoss.xel.zel |
---|
Fields in org.zkoss.xel.zel declared as XelContext | |
---|---|
protected XelContext |
XelELResolver._ctx
|
Methods in org.zkoss.xel.zel that return XelContext | |
---|---|
protected XelContext |
XelELResolver.getXelContext()
|
protected XelContext |
XelELContext.getXelContext()
|
Methods in org.zkoss.xel.zel with parameters of type XelContext | |
---|---|
java.lang.Object |
ELXelExpression.evaluate(XelContext xelc)
|
java.lang.Object |
ELFactory.evaluate(XelContext xelc,
java.lang.String expression,
java.lang.Class expectedType)
|
java.lang.Class |
ELXelExpression.getType(XelContext xelc)
|
ValueReference |
ELXelExpression.getValueReference(XelContext xelc)
|
boolean |
ELXelExpression.isReadOnly(XelContext xelc)
|
protected ELContext |
ELXelExpression.newELContext(XelContext xelc)
|
protected ELContext |
ELFactory.newELContext(XelContext xelc)
|
protected ELResolver |
XelELContext.newELResolver(XelContext xelc)
|
Expression |
ELFactory.parseExpression(XelContext xelc,
java.lang.String expression,
java.lang.Class expectedType)
|
void |
ELXelExpression.setValue(XelContext xelc,
java.lang.Object value)
|
Constructors in org.zkoss.xel.zel with parameters of type XelContext | |
---|---|
XelELContext(XelContext xelc)
|
|
XelELResolver(XelContext ctx)
Constructor. |
Uses of XelContext in org.zkoss.zk.ui |
---|
Methods in org.zkoss.zk.ui with parameters of type XelContext | |
---|---|
java.lang.Object |
Page.getXelVariable(XelContext ctx,
java.lang.Object base,
java.lang.Object name,
boolean ignoreExec)
Returns a variable that is visible to XEL expressions. |
Uses of XelContext in org.zkoss.zk.ui.impl |
---|
Methods in org.zkoss.zk.ui.impl with parameters of type XelContext | |
---|---|
java.lang.Object |
AbstractExecution.getExtraXelVariable(XelContext ctx,
java.lang.Object base,
java.lang.Object name)
|
java.lang.Object |
PageImpl.getXelVariable(XelContext ctx,
java.lang.Object base,
java.lang.Object name,
boolean ignoreExec)
|
Uses of XelContext in org.zkoss.zk.ui.sys |
---|
Methods in org.zkoss.zk.ui.sys with parameters of type XelContext | |
---|---|
java.lang.Object |
ExecutionCtrl.getExtraXelVariable(XelContext ctx,
java.lang.Object base,
java.lang.Object name)
Returns the object, if any, defined in any variable resolver added by Execution.addVariableResolver(org.zkoss.xel.VariableResolver) . |
Uses of XelContext in org.zkoss.zk.xel.impl |
---|
Methods in org.zkoss.zk.xel.impl that return XelContext | |
---|---|
protected XelContext |
SimpleEvaluator.newXelContext(java.lang.Object ref)
Instantiate a XEL context. |
Methods in org.zkoss.zk.xel.impl with parameters of type XelContext | |
---|---|
java.lang.Object |
ExecutionResolver.resolveVariable(XelContext ctx,
java.lang.Object base,
java.lang.Object onm)
|
Uses of XelContext in org.zkoss.zkmax.xel.el |
---|
Methods in org.zkoss.zkmax.xel.el with parameters of type XelContext | |
---|---|
java.lang.Object |
ELXelExpression.evaluate(XelContext ctx)
|
java.lang.Object |
ApacheELFactory.evaluate(XelContext xelc,
java.lang.String expression,
java.lang.Class expectedType)
|
Expression |
ApacheELFactory.parseExpression(XelContext xelc,
java.lang.String expression,
java.lang.Class expectedType)
|
Constructors in org.zkoss.zkmax.xel.el with parameters of type XelContext | |
---|---|
XelELResolver(XelContext ctx)
|
Uses of XelContext in org.zkoss.zkmax.xel.el21 |
---|
Methods in org.zkoss.zkmax.xel.el21 with parameters of type XelContext | |
---|---|
java.lang.Object |
ApacheELFactory.evaluate(XelContext xelc,
java.lang.String expression,
java.lang.Class expectedType)
|
Expression |
ApacheELFactory.parseExpression(XelContext xelc,
java.lang.String expression,
java.lang.Class expectedType)
|
Constructors in org.zkoss.zkmax.xel.el21 with parameters of type XelContext | |
---|---|
XelELResolver(XelContext ctx)
Constructor. |
Uses of XelContext in org.zkoss.zkmax.xel.mvel |
---|
Methods in org.zkoss.zkmax.xel.mvel with parameters of type XelContext | |
---|---|
java.lang.Object |
MVELFactory.evaluate(XelContext ctx,
java.lang.String expression,
java.lang.Class expectedType)
|
Expression |
MVELFactory.parseExpression(XelContext ctx,
java.lang.String expression,
java.lang.Class expectedType)
|
Uses of XelContext in org.zkoss.zkmax.xel.ognl |
---|
Methods in org.zkoss.zkmax.xel.ognl with parameters of type XelContext | |
---|---|
java.lang.Object |
OGNLFactory.evaluate(XelContext ctx,
java.lang.String expression,
java.lang.Class expectedType)
|
static java.util.Map |
OGNLFactory.getContext(XelContext ctx)
Returns an OGNL context for the specified XEL context. |
static java.lang.Object |
OGNLFactory.getRoot(XelContext ctx)
Returns the root object. |
Expression |
OGNLFactory.parseExpression(XelContext ctx,
java.lang.String expression,
java.lang.Class expectedType)
|
Uses of XelContext in org.zkoss.zkplus.cdi |
---|
Methods in org.zkoss.zkplus.cdi with parameters of type XelContext | |
---|---|
java.lang.Object |
DelegatingVariableResolver.resolveVariable(XelContext ctx,
java.lang.Object base,
java.lang.Object name)
|
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |