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 classELAttributeEvaluatorEvaluates string expression with typical EL syntax.
You can use normal EL syntax, knowing that the root objects areRequest,ApplicationContextand 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 classAbstractAttributeEvaluatorAbstract 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 AttributeEvaluatorAttributeEvaluatorFactory. getAttributeEvaluator(java.lang.String language)Creates and attribute evaluator for the given expression language.AttributeEvaluatorAttributeEvaluatorFactory. getAttributeEvaluator(Attribute attribute)Creates and attribute evaluator using an attribute.AttributeEvaluatorBasicAttributeEvaluatorFactory. getAttributeEvaluator(java.lang.String language)Creates and attribute evaluator for the given expression language.AttributeEvaluatorBasicAttributeEvaluatorFactory. 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 voidBasicAttributeEvaluatorFactory. 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 classDirectAttributeEvaluatorResolves 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 classMVELAttributeEvaluatorAllows 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 classOGNLAttributeEvaluatorEvaluates attribute expressions and expressions with OGNL language.
-