Package | Description |
---|---|
org.apache.commons.jelly |
This package contains the main jelly API classes.
|
org.apache.commons.jelly.expression |
Implementations of the Expression classes using commons-jexl.
|
org.apache.commons.jelly.expression.jexl |
Expressions used to turn the tag attribute values into compiled
expression objects for languages such as Jexl, XPath, Velocity, beanshell, Rhino
etc.
|
org.apache.commons.jelly.parser |
Jelly parsers both XML syntax and non-XML syntaxes are supported.
|
Modifier and Type | Method and Description |
---|---|
protected ExpressionFactory |
TagLibrary.getExpressionFactory()
Allows derived tag libraries to use their own factory
|
Modifier and Type | Method and Description |
---|---|
Expression |
TagLibrary.createExpression(ExpressionFactory factory,
TagScript tagScript,
String attributeName,
String attributeValue)
Allows taglibs to use their own expression evaluation mechanism
|
Modifier and Type | Method and Description |
---|---|
static Expression |
CompositeExpression.parse(String text,
ExpressionFactory factory)
Parses the given String to be either a ConstantExpression, an Expression denoted as
"${foo}" or some String with embedded expressions such as "abc${something}def${else}xyz"
which results in a CompositeExpression being returned.
|
Modifier and Type | Class and Description |
---|---|
class |
JexlExpressionFactory
Represents a factory of Jexl
expression which fully supports the Expression Language in JSTL and JSP.
|
Modifier and Type | Method and Description |
---|---|
protected ExpressionFactory |
XMLParser.createExpressionFactory() |
ExpressionFactory |
XMLParser.getExpressionFactory() |
Modifier and Type | Method and Description |
---|---|
void |
XMLParser.setExpressionFactory(ExpressionFactory expressionFactory)
Sets the expression factory used to evaluate tag attributes
|
Copyright © 2014 Apache Software Foundation. All rights reserved.