javadoc improvements

git-svn-id: https://src.springframework.org/svn/spring-framework/trunk@1604 50f2f4bb-b051-0410-bef5-90022cba6387
This commit is contained in:
Keith Donald
2009-07-24 19:11:54 +00:00
parent 375e1d3738
commit 87e3b1b011
@@ -17,23 +17,19 @@ package org.springframework.ui.binding.binder;
import java.util.Map;
import org.springframework.ui.binding.FieldModel;
/**
* Binds user-entered values to properties of a model object.
* Bind to fields of a model object.
* @author Keith Donald
* @since 3.0
* @see #bind(String)
* @see #bind(Map)
*/
public interface Binder {
/**
* Bind the source values to the properties of the model.
* A result is returned for each registered {@link FieldModel}.
* Bind submitted field values.
* @param fieldValues the field values to bind
* @return the results of the binding operation
* @throws MissingFieldException when the fieldValues Map is missing entries for required bindings
* @throws MissingFieldException when the fieldValues Map is missing required fields
*/
BindingResults bind(Map<String, ? extends Object> fieldValues);