Fix broken Javadoc related to < and >
This commit is contained in:
committed by
Sebastien Deleuze
parent
71e2d8e9de
commit
2defb6555e
@@ -826,7 +826,7 @@ public abstract class AbstractBeanDefinition extends BeanMetadataAttributeAccess
|
||||
/**
|
||||
* Set whether this bean definition is 'synthetic', that is, not defined
|
||||
* by the application itself (for example, an infrastructure bean such
|
||||
* as a helper for auto-proxying, created through {@code <aop:config>}).
|
||||
* as a helper for auto-proxying, created through {@code <aop:config>}).
|
||||
*/
|
||||
public void setSynthetic(boolean synthetic) {
|
||||
this.synthetic = synthetic;
|
||||
|
||||
@@ -90,7 +90,7 @@ import org.springframework.util.StringUtils;
|
||||
* <pre class="code"><util:properties location="jdbc.properties"/></pre>
|
||||
*
|
||||
* <p>The observant reader will notice that the sole attribute on the
|
||||
* {@code <util:properties/>} element matches the
|
||||
* {@code <util:properties/>} element matches the
|
||||
* {@link org.springframework.beans.factory.config.PropertiesFactoryBean#setLocation(org.springframework.core.io.Resource)}
|
||||
* method name on the {@code PropertiesFactoryBean} (the general
|
||||
* usage thus illustrated holds true for any number of attributes).
|
||||
|
||||
@@ -22,15 +22,15 @@ import org.springframework.beans.factory.config.BeanDefinitionHolder;
|
||||
|
||||
/**
|
||||
* Interface used by the {@link DefaultBeanDefinitionDocumentReader}
|
||||
* to handle custom, nested (directly under a {@code <bean>}) tags.
|
||||
* to handle custom, nested (directly under a {@code <bean>}) tags.
|
||||
*
|
||||
* <p>Decoration may also occur based on custom attributes applied to the
|
||||
* {@code <bean>} tag. Implementations are free to turn the metadata in the
|
||||
* {@code <bean>} tag. Implementations are free to turn the metadata in the
|
||||
* custom tag into as many
|
||||
* {@link org.springframework.beans.factory.config.BeanDefinition BeanDefinitions} as
|
||||
* required and to transform the
|
||||
* {@link org.springframework.beans.factory.config.BeanDefinition} of the enclosing
|
||||
* {@code <bean>} tag, potentially even returning a completely different
|
||||
* {@code <bean>} tag, potentially even returning a completely different
|
||||
* {@link org.springframework.beans.factory.config.BeanDefinition} to replace the
|
||||
* original.
|
||||
*
|
||||
|
||||
@@ -398,7 +398,7 @@ public class BeanDefinitionParserDelegate {
|
||||
|
||||
/**
|
||||
* Return the default settings for bean definitions as indicated within
|
||||
* the attributes of the top-level {@code <beans/>} element.
|
||||
* the attributes of the top-level {@code <beans/>} element.
|
||||
*/
|
||||
public BeanDefinitionDefaults getBeanDefinitionDefaults() {
|
||||
BeanDefinitionDefaults bdd = new BeanDefinitionDefaults();
|
||||
@@ -412,7 +412,7 @@ public class BeanDefinitionParserDelegate {
|
||||
|
||||
/**
|
||||
* Return any patterns provided in the 'default-autowire-candidates'
|
||||
* attribute of the top-level {@code <beans/>} element.
|
||||
* attribute of the top-level {@code <beans/>} element.
|
||||
*/
|
||||
public String[] getAutowireCandidatePatterns() {
|
||||
String candidatePattern = this.defaults.getAutowireCandidates();
|
||||
@@ -421,7 +421,7 @@ public class BeanDefinitionParserDelegate {
|
||||
|
||||
|
||||
/**
|
||||
* Parses the supplied {@code <bean>} element. May return {@code null}
|
||||
* Parses the supplied {@code <bean>} element. May return {@code null}
|
||||
* if there were errors during parse. Errors are reported to the
|
||||
* {@link org.springframework.beans.factory.parsing.ProblemReporter}.
|
||||
*/
|
||||
@@ -430,7 +430,7 @@ public class BeanDefinitionParserDelegate {
|
||||
}
|
||||
|
||||
/**
|
||||
* Parses the supplied {@code <bean>} element. May return {@code null}
|
||||
* Parses the supplied {@code <bean>} element. May return {@code null}
|
||||
* if there were errors during parse. Errors are reported to the
|
||||
* {@link org.springframework.beans.factory.parsing.ProblemReporter}.
|
||||
*/
|
||||
@@ -1011,7 +1011,7 @@ public class BeanDefinitionParserDelegate {
|
||||
* constructor-arg element.
|
||||
* @param ele subelement of property element; we don't know which yet
|
||||
* @param defaultValueType the default type (class name) for any
|
||||
* {@code <value>} tag that might be created
|
||||
* {@code <value>} tag that might be created
|
||||
*/
|
||||
public Object parsePropertySubElement(Element ele, BeanDefinition bd, String defaultValueType) {
|
||||
if (!isDefaultNamespace(ele)) {
|
||||
|
||||
@@ -19,7 +19,7 @@ package org.springframework.beans.factory.xml;
|
||||
import org.springframework.beans.factory.parsing.DefaultsDefinition;
|
||||
|
||||
/**
|
||||
* Simple JavaBean that holds the defaults specified at the {@code <beans>}
|
||||
* Simple JavaBean that holds the defaults specified at the {@code <beans>}
|
||||
* level in a standard Spring XML bean definition document:
|
||||
* {@code default-lazy-init}, {@code default-autowire}, etc.
|
||||
*
|
||||
|
||||
@@ -32,8 +32,8 @@ import org.springframework.beans.factory.config.BeanDefinitionHolder;
|
||||
* custom nested tags.
|
||||
*
|
||||
* <p>The parser will call {@link #parse} when it encounters a custom tag
|
||||
* directly under the {@code <beans>} tags and {@link #decorate} when
|
||||
* it encounters a custom tag directly under a {@code <bean>} tag.
|
||||
* directly under the {@code <beans>} tags and {@link #decorate} when
|
||||
* it encounters a custom tag directly under a {@code <bean>} tag.
|
||||
*
|
||||
* <p>Developers writing their own custom element extensions typically will
|
||||
* not implement this interface directly, but rather make use of the provided
|
||||
@@ -61,7 +61,7 @@ public interface NamespaceHandler {
|
||||
* that is embedded in the supplied {@link ParserContext}.
|
||||
* <p>Implementations should return the primary {@code BeanDefinition}
|
||||
* that results from the parse phase if they wish to be used nested
|
||||
* inside (for example) a {@code <property>} tag.
|
||||
* inside (for example) a {@code <property>} tag.
|
||||
* <p>Implementations may return {@code null} if they will
|
||||
* <strong>not</strong> be used in a nested scenario.
|
||||
* @param element the element that is to be parsed into one or more {@code BeanDefinitions}
|
||||
|
||||
Reference in New Issue
Block a user