Uses of Interface
org.springframework.binding.expression.EvaluationContext

Packages that use EvaluationContext
org.springframework.binding.expression Core expression language abstraction for parsing and evaluating expressions. 
org.springframework.binding.expression.support Expression abstraction implementations, integrated with BeanWrapper and OGNL. 
org.springframework.binding.method Method binding support for invoking abritrary methods on target beans. 
 

Uses of EvaluationContext in org.springframework.binding.expression
 

Methods in org.springframework.binding.expression that return EvaluationContext
 EvaluationContext EvaluationAttempt.getContext()
          Returns context attributes that may have influenced the evaluation process.
 

Methods in org.springframework.binding.expression with parameters of type EvaluationContext
 java.lang.Object Expression.evaluate(java.lang.Object target, EvaluationContext context)
          Evaluate the expression encapsulated by this evaluator against the provided target object and return the result of the evaluation.
 void SettableExpression.evaluateToSet(java.lang.Object target, java.lang.Object value, EvaluationContext context)
          Evaluate this expression against the target object to set its value to the value provided.
 

Constructors in org.springframework.binding.expression with parameters of type EvaluationContext
EvaluationAttempt(Expression expression, java.lang.Object target, EvaluationContext context)
          Create an evaluation attempt.
SetValueAttempt(SettableExpression expression, java.lang.Object target, java.lang.Object value, EvaluationContext context)
          Creates a new set attempt.
 

Uses of EvaluationContext in org.springframework.binding.expression.support
 

Methods in org.springframework.binding.expression.support with parameters of type EvaluationContext
 java.lang.Object CollectionAddingExpression.evaluate(java.lang.Object target, EvaluationContext context)
           
 java.lang.Object CompositeStringExpression.evaluate(java.lang.Object target, EvaluationContext evaluationContext)
           
 java.lang.Object StaticExpression.evaluate(java.lang.Object target, EvaluationContext context)
           
 void CollectionAddingExpression.evaluateToSet(java.lang.Object target, java.lang.Object value, EvaluationContext context)
           
 

Uses of EvaluationContext in org.springframework.binding.method
 

Methods in org.springframework.binding.method with parameters of type EvaluationContext
 java.lang.Object Parameter.evaluateArgument(java.lang.Object argumentSource, EvaluationContext context)
          Evaluate this method parameter against the provided argument source, returning a single method argument value.
 



Copyright © 2009 Spring Framework. All Rights Reserved.