mirror of
https://github.com/spring-projects/spring-framework.git
synced 2026-09-21 21:39:05 +00:00
binding executor
git-svn-id: https://src.springframework.org/svn/spring-framework/trunk@1597 50f2f4bb-b051-0410-bef5-90022cba6387
This commit is contained in:
+20
@@ -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();
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user