From: Juergen H. <jho...@us...> - 2008-10-28 13:30:47
|
Update of /cvsroot/springframework/spring/src/org/springframework/beans/factory/config In directory fdv4jf1.ch3.sourceforge.com:/tmp/cvs-serv21366/src/org/springframework/beans/factory/config Modified Files: ConfigurableBeanFactory.java Log Message: clarified addBeanPostProcessor semantics Index: ConfigurableBeanFactory.java =================================================================== RCS file: /cvsroot/springframework/spring/src/org/springframework/beans/factory/config/ConfigurableBeanFactory.java,v retrieving revision 1.50 retrieving revision 1.51 diff -C2 -d -r1.50 -r1.51 *** ConfigurableBeanFactory.java 13 Oct 2008 15:51:16 -0000 1.50 --- ConfigurableBeanFactory.java 28 Oct 2008 13:30:38 -0000 1.51 *************** *** 186,190 **** * Add a new BeanPostProcessor that will get applied to beans created * by this factory. To be invoked during factory configuration. ! * @param beanPostProcessor the bean processor to register */ void addBeanPostProcessor(BeanPostProcessor beanPostProcessor); --- 186,195 ---- * Add a new BeanPostProcessor that will get applied to beans created * by this factory. To be invoked during factory configuration. ! * <p>Note: Post-processors submitted here will be applied in the order of ! * registration; any ordering semantics expressed through implementing the ! * {@link org.springframework.core.Ordered} interface will be ignored. Note ! * that autodetected post-processors (e.g. as beans in an ApplicationContext) ! * will always be applied after programmatically registered ones. ! * @param beanPostProcessor the post-processor to register */ void addBeanPostProcessor(BeanPostProcessor beanPostProcessor); |