From: Juergen H. <jho...@us...> - 2008-10-13 15:51:35
|
Update of /cvsroot/springframework/spring/src/org/springframework/beans/factory/config In directory fdv4jf1.ch3.sourceforge.com:/tmp/cvs-serv7773/src/org/springframework/beans/factory/config Modified Files: ConfigurableBeanFactory.java Log Message: exposed public "copyRegisteredEditorsTo" method on ConfigurableBeanFactory interface Index: ConfigurableBeanFactory.java =================================================================== RCS file: /cvsroot/springframework/spring/src/org/springframework/beans/factory/config/ConfigurableBeanFactory.java,v retrieving revision 1.49 retrieving revision 1.50 diff -C2 -d -r1.49 -r1.50 *** ConfigurableBeanFactory.java 28 Feb 2008 16:18:08 -0000 1.49 --- ConfigurableBeanFactory.java 13 Oct 2008 15:51:16 -0000 1.50 *************** *** 20,23 **** --- 20,24 ---- import org.springframework.beans.PropertyEditorRegistrar; + import org.springframework.beans.PropertyEditorRegistry; import org.springframework.beans.TypeConverter; import org.springframework.beans.factory.BeanDefinitionStoreException; *************** *** 158,161 **** --- 159,169 ---- /** + * Initialize the given PropertyEditorRegistry with the custom editors + * that have been registered with this BeanFactory. + * @param registry the PropertyEditorRegistry to initialize + */ + void copyRegisteredEditorsTo(PropertyEditorRegistry registry); + + /** * Set a custom type converter that this BeanFactory should use for converting * bean property values, constructor argument values, etc. |