Polish GroovyBeanDefinitionReader ctr Javadoc

master
Sam Brannen 10 years ago
parent 9930a8715f
commit ffff596ae6
  1. 14
      spring-beans-groovy/src/main/java/org/springframework/beans/factory/groovy/GroovyBeanDefinitionReader.java

@ -156,7 +156,8 @@ public class GroovyBeanDefinitionReader extends AbstractBeanDefinitionReader imp
/** /**
* Create a new {@code GroovyBeanDefinitionReader} for the given {@link BeanDefinitionRegistry}. * Create a new {@code GroovyBeanDefinitionReader} for the given
* {@link BeanDefinitionRegistry}.
* @param registry the {@code BeanDefinitionRegistry} to load bean definitions into * @param registry the {@code BeanDefinitionRegistry} to load bean definitions into
*/ */
public GroovyBeanDefinitionReader(BeanDefinitionRegistry registry) { public GroovyBeanDefinitionReader(BeanDefinitionRegistry registry) {
@ -167,10 +168,13 @@ public class GroovyBeanDefinitionReader extends AbstractBeanDefinitionReader imp
} }
/** /**
* Create a new {@code GroovyBeanDefinitionReader} based on the given {@link XmlBeanDefinitionReader}, * Create a new {@code GroovyBeanDefinitionReader} based on the given
* using its {@code BeanDefinitionRegistry} and delegating Groovy DSL loading to it. * {@link XmlBeanDefinitionReader}, loading bean definitions into its
* @param xmlBeanDefinitionReader the {@code XmlBeanDefinitionReader} to derive the registry * {@code BeanDefinitionRegistry} and delegating Groovy DSL loading to it.
* from and to delegate XML loading to * <p>The supplied {@code XmlBeanDefinitionReader} should typically
* be pre-configured with XML validation disabled.
* @param xmlBeanDefinitionReader the {@code XmlBeanDefinitionReader} to
* derive the registry from and to delegate Groovy DSL loading to
*/ */
public GroovyBeanDefinitionReader(XmlBeanDefinitionReader xmlBeanDefinitionReader) { public GroovyBeanDefinitionReader(XmlBeanDefinitionReader xmlBeanDefinitionReader) {
super(xmlBeanDefinitionReader.getRegistry()); super(xmlBeanDefinitionReader.getRegistry());

Loading…
Cancel
Save