This commit is contained in:
Keith Donald
2009-06-11 20:56:47 +00:00
parent f70d14e2c2
commit 75c7a7aeeb
6 changed files with 14 additions and 5 deletions

View File

@@ -36,6 +36,7 @@ import org.springframework.ui.format.number.IntegerFormatter;
public class GenericBinderTests {
private TestBean bean;
private Binder binder;
@Before

View File

@@ -0,0 +1,5 @@
package org.springframework.ui.validation;
public interface ValidateResults {
}

View File

@@ -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);
}