binding executor

git-svn-id: https://src.springframework.org/svn/spring-framework/trunk@1597 50f2f4bb-b051-0410-bef5-90022cba6387
This commit is contained in:
Keith Donald
2009-07-23 13:39:33 +00:00
parent 7ffae11f6a
commit e62ce4f3f9
@@ -0,0 +1,20 @@
package org.springframework.ui.binding.binder;
import org.springframework.ui.binding.config.BindingRuleConfiguration;
public interface BinderExecutor<M> {
void setModel(M model);
BindingRuleConfiguration bindingRule(String property);
// TODO allow injection of pre-created BindingRules
BindingResults bind();
// TODO return validation results
void validate();
M getModel();
}