|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectorg.zkoss.zkmax.xel.ognl.OGNLFactory
public class OGNLFactory
An implementation based on OGNL.
Available in ZK EE
Note: OGNL is not completely compatible with JSP EL.
See also OGNL website.
| Field Summary |
|---|
| Fields inherited from interface org.zkoss.xel.ExpressionFactory |
|---|
FEATURE_CLASS, FEATURE_FUNCTION |
| Constructor Summary | |
|---|---|
OGNLFactory()
|
|
| Method Summary | |
|---|---|
java.lang.Object |
evaluate(XelContext ctx,
java.lang.String expression,
java.lang.Class expectedType)
Evaluates an expression. |
static java.util.Map |
getContext(XelContext ctx)
Returns an OGNL context for the specified XEL context. |
static java.lang.Object |
getRoot(XelContext ctx)
Returns the root object. |
boolean |
isSupported(int feature)
Returns whether an feature is supported. |
Expression |
parseExpression(XelContext ctx,
java.lang.String expression,
java.lang.Class expectedType)
Prepares (a.k.a., compiles) an expression. |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
|---|
public OGNLFactory()
| Method Detail |
|---|
public boolean isSupported(int feature)
ExpressionFactory
isSupported in interface ExpressionFactoryfeature - which feature to query.
It can be a combination of ExpressionFactory.FEATURE_FUNCTION
and ExpressionFactory.FEATURE_CLASS.
public Expression parseExpression(XelContext ctx,
java.lang.String expression,
java.lang.Class expectedType)
throws XelException
ExpressionFactory
parseExpression in interface ExpressionFactoryctx - the context information to prepare the expression.
It can be null, in which case no functions are supported for this
invocation.expression - the expression to be evaluated.expectedType - the expected type of the result of the evaluation
XelException
public java.lang.Object evaluate(XelContext ctx,
java.lang.String expression,
java.lang.Class expectedType)
throws XelException
ExpressionFactory
evaluate in interface ExpressionFactoryctx - the context information to evaluate an expression.
It can be null, in which case no functions are supported for this
invocation.expression - the expression to be evaluated.
Note: the expression is enclosed
with ${ and }, regardless of what implementation is used.expectedType - the expected type of the result of the evaluation
XelExceptionpublic static java.util.Map getContext(XelContext ctx)
public static java.lang.Object getRoot(XelContext ctx)
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||