git-svn-id: https://src.springframework.org/svn/spring-framework/trunk@1361 50f2f4bb-b051-0410-bef5-90022cba6387
This commit is contained in:
Keith Donald
2009-06-11 20:56:47 +00:00
parent c1e3c02307
commit 7aaf5065b9
6 changed files with 14 additions and 5 deletions
@@ -36,6 +36,7 @@ import org.springframework.ui.format.number.IntegerFormatter;
public class GenericBinderTests {
private TestBean bean;
private Binder binder;
@Before
@@ -0,0 +1,5 @@
package org.springframework.ui.validation;
public interface ValidateResults {
}
@@ -4,6 +4,6 @@ import java.util.List;
public interface Validator {
void validate(Object model, List<String> properties);
ValidateResults validate(Object model, List<String> properties);
}