FileDocCategorySizeDatePackage
ExpressionEvaluator.javaAPI DocGlassfish v2 API3783Sat May 05 19:17:50 BST 2007org.apache.taglibs.standard.lang.support

ExpressionEvaluator

public interface ExpressionEvaluator

The interface for an expression-language validator and evaluator. Classes that implement an expression language expose their functionality via this interface.

The validate() and evaluate() methods must be thread-safe. That is, multiple threads may call these methods on the same ExpressionEvaluator object simultaneously. Implementations should synchronize access if they depend on transient state. Implementations should not, however, assume that only one object of each ExpressionEvaluator type will be instantiated; global caching should therefore be static. No release() mechanism or robust lifecycle is specified, for language-interpreter pluggability is experimental in EA2.

WARNING: This class supports experimentation for the EA2 release of JSTL; it is not expected to be part of the final RI or specification.

author
Shawn Bayern (based exactly on rev1 draft)

Fields Summary
Constructors Summary
Methods Summary
public java.lang.Objectevaluate(java.lang.String attributeName, java.lang.String expression, java.lang.Class expectedType, javax.servlet.jsp.tagext.Tag tag, javax.servlet.jsp.PageContext pageContext)
Evaluates the expression at request time.

public java.lang.Stringvalidate(java.lang.String attributeName, java.lang.String expression)
Translation time validation of an expression. This method will return a null String if the expression is valid; otherwise an error message.