Uses of Interface
org.apache.tiles.evaluator.AttributeEvaluator
-
Packages that use AttributeEvaluator Package Description org.apache.tiles.el Attribute evaluator classes that can perform EL evaluation for attributes.org.apache.tiles.evaluator Interfaces to manage attribute value evaluation.org.apache.tiles.evaluator.impl Classes to manage attribute value evaluation.org.apache.tiles.mvel Attribute evaluator classes that can perform MVEL evaluation for attributes.org.apache.tiles.ognl Attribute evaluator classes that can perform OGNL evaluation for attributes. -
-
Uses of AttributeEvaluator in org.apache.tiles.el
Classes in org.apache.tiles.el that implement AttributeEvaluator Modifier and Type Class Description class
ELAttributeEvaluator
Evaluates string expression with typical EL syntax.
You can use normal EL syntax, knowing that the root objects areRequest
,ApplicationContext
and beans contained in request, session and application scope. -
Uses of AttributeEvaluator in org.apache.tiles.evaluator
Classes in org.apache.tiles.evaluator that implement AttributeEvaluator Modifier and Type Class Description class
AbstractAttributeEvaluator
Abstract class to link a correct evaluation of an attribute, by evaluatingAttribute.getValue()
and thenAttribute.getExpressionObject()
.Methods in org.apache.tiles.evaluator that return AttributeEvaluator Modifier and Type Method Description AttributeEvaluator
AttributeEvaluatorFactory. getAttributeEvaluator(java.lang.String language)
Creates and attribute evaluator for the given expression language.AttributeEvaluator
AttributeEvaluatorFactory. getAttributeEvaluator(Attribute attribute)
Creates and attribute evaluator using an attribute.AttributeEvaluator
BasicAttributeEvaluatorFactory. getAttributeEvaluator(java.lang.String language)
Creates and attribute evaluator for the given expression language.AttributeEvaluator
BasicAttributeEvaluatorFactory. getAttributeEvaluator(Attribute attribute)
Creates and attribute evaluator using an attribute.Methods in org.apache.tiles.evaluator with parameters of type AttributeEvaluator Modifier and Type Method Description void
BasicAttributeEvaluatorFactory. registerAttributeEvaluator(java.lang.String language, AttributeEvaluator evaluator)
Registers a known expression language with its attribute evaluator.Constructors in org.apache.tiles.evaluator with parameters of type AttributeEvaluator Constructor Description BasicAttributeEvaluatorFactory(AttributeEvaluator defaultEvaluator)
Constructor. -
Uses of AttributeEvaluator in org.apache.tiles.evaluator.impl
Classes in org.apache.tiles.evaluator.impl that implement AttributeEvaluator Modifier and Type Class Description class
DirectAttributeEvaluator
Resolves a string and returns the string itself. -
Uses of AttributeEvaluator in org.apache.tiles.mvel
Classes in org.apache.tiles.mvel that implement AttributeEvaluator Modifier and Type Class Description class
MVELAttributeEvaluator
Allows to use MVEL as the language to evaluate attribute values. -
Uses of AttributeEvaluator in org.apache.tiles.ognl
Classes in org.apache.tiles.ognl that implement AttributeEvaluator Modifier and Type Class Description class
OGNLAttributeEvaluator
Evaluates attribute expressions and expressions with OGNL language.
-