All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.springframework.binding.expression.PropertyExpression Maven / Gradle / Ivy

There is a newer version: 1.0.6
Show newest version
package org.springframework.binding.expression;

import java.util.Map;

/**
 * An evaluator that is capable of setting a property on a target object at the
 * value path defined by an expression.
 * @author Keith Donald
 */
public interface PropertyExpression extends Expression {

	/**
	 * Set the value of this property expression on the target object to the
	 * value provided.
	 * @param target the target object
	 * @param value the value
	 * @param setContext the evaluation and setter context
	 */
	public void setValue(Object target, Object value, Map setContext) throws EvaluationException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy