Package org.zkoss.bind.xel
Class BindXelFactory
- java.lang.Object
-
- org.zkoss.xel.zel.ELFactory
-
- org.zkoss.bind.xel.BindXelFactory
-
- All Implemented Interfaces:
ExpressionFactory
- Direct Known Subclasses:
BindXelFactoryEx
public class BindXelFactory extends ELFactory
Xel Factory for Binding.- Since:
- 6.0.0
- Author:
- henrichen
-
-
Field Summary
-
Fields inherited from interface org.zkoss.xel.ExpressionFactory
FEATURE_CLASS, FEATURE_FUNCTION
-
-
Constructor Summary
Constructors Constructor Description BindXelFactory()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected ELContextnewELContext(XelContext xelc)protected ExpressionFactorynewExpressionFactory()Returns the EL expression factory.ExpressionparseExpression(XelContext xelc, java.lang.String expression, java.lang.Class expectedType)Prepares (a.k.a., compiles) an expression.-
Methods inherited from class org.zkoss.xel.zel.ELFactory
evaluate, isSupported
-
-
-
-
Method Detail
-
parseExpression
public Expression parseExpression(XelContext xelc, java.lang.String expression, java.lang.Class expectedType) throws XelException
Description copied from interface:ExpressionFactoryPrepares (a.k.a., compiles) an expression.- Specified by:
parseExpressionin interfaceExpressionFactory- Overrides:
parseExpressionin classELFactory- Parameters:
xelc- 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- Throws:
XelException
-
newELContext
protected ELContext newELContext(XelContext xelc)
- Overrides:
newELContextin classELFactory
-
newExpressionFactory
protected ExpressionFactory newExpressionFactory()
Description copied from class:ELFactoryReturns the EL expression factory.Default: Use org.zkoss.zel.impl.ExpressionFactoryImpl.
You might override it to use a different implementation.
- Overrides:
newExpressionFactoryin classELFactory
-
-