presentation model binder

This commit is contained in:
Keith Donald
2009-07-24 23:20:49 +00:00
parent 8709959a98
commit de5528840d
3 changed files with 5 additions and 5 deletions

View File

@@ -38,7 +38,7 @@ import org.springframework.ui.message.MockMessageSource;
public class GenericBinderTests {
private GenericBinder binder;
private PresentationModelBinder binder;
private DefaultPresentationModel presentationModel;
@@ -48,7 +48,7 @@ public class GenericBinderTests {
public void setUp() {
bean = new TestBean();
presentationModel = new DefaultPresentationModel(bean);
binder = new GenericBinder(presentationModel);
binder = new PresentationModelBinder(presentationModel);
LocaleContextHolder.setLocale(Locale.US);
}