Browse Source

since 3.0

git-svn-id: https://src.springframework.org/svn/spring-framework/trunk@2254 50f2f4bb-b051-0410-bef5-90022cba6387
pull/1/head
Keith Donald 16 years ago
parent
commit
37ca3a6a83
  1. 1
      org.springframework.context/src/main/java/org/springframework/validation/DataBinder.java
  2. 1
      org.springframework.web/src/main/java/org/springframework/web/bind/support/ConfigurableWebBindingInitializer.java

1
org.springframework.context/src/main/java/org/springframework/validation/DataBinder.java

@ -461,6 +461,7 @@ public class DataBinder implements PropertyEditorRegistry, TypeConverter { @@ -461,6 +461,7 @@ public class DataBinder implements PropertyEditorRegistry, TypeConverter {
/**
* Set the ConversionService to use for field value formatting in preference to JavaBeans PropertyEditors.
* @since 3.0
*/
public void setConversionService(ConversionService conversionService) {
this.conversionService = conversionService;

1
org.springframework.web/src/main/java/org/springframework/web/bind/support/ConfigurableWebBindingInitializer.java

@ -114,6 +114,7 @@ public class ConfigurableWebBindingInitializer implements WebBindingInitializer @@ -114,6 +114,7 @@ public class ConfigurableWebBindingInitializer implements WebBindingInitializer
/**
* Specify a ConversionService which will apply to every DataBinder.
* @since 3.0
*/
public final void setConversionService(ConversionService conversionService) {
this.conversionService = conversionService;

Loading…
Cancel
Save