Uses of Interface
net.sourceforge.stripes.validation.expression.ExpressionExecutor

Packages that use ExpressionExecutor
net.sourceforge.stripes.validation.expression This package provides several classes that give Stripes the ability to execute EL expressions for validation using various implementations. 
 

Uses of ExpressionExecutor in net.sourceforge.stripes.validation.expression
 

Classes in net.sourceforge.stripes.validation.expression that implement ExpressionExecutor
 class CommonsElExpressionExecutor
          An implementation of ExpressionExecutor that relies on the Apache Commons EL implementation being available in the classpath.
 class ExpressionExecutorSupport
          A base class that provides the general plumbing for running expression validation using the old JSP 2.0 style ExpressionEvaluator.
 class Jsp20ExpressionExecutor
          An implementation of ExpressionExecutor that uses the container's built in JSP2.0 EL implementation.
 class Jsp21ExpressionExecutor
          An implementation of ExpressionExecutor that uses the new EL API available in Java EE 5 in the javax.el package.
 

Methods in net.sourceforge.stripes.validation.expression that return ExpressionExecutor
static ExpressionExecutor ExpressionValidator.getExecutor()
          Gets the executor that will be used to run expression evaluation.
 

Methods in net.sourceforge.stripes.validation.expression with parameters of type ExpressionExecutor
static void ExpressionValidator.setExecutor(ExpressionExecutor executor)
          Allows anyone who is interested to substitute a different ExpressionExecutor instance instead of the one picked by the ExpressionValidator.
 



? Copyright 2005-2006, Stripes Development Team.