Skip to content

Commit 2defb65

Browse files
izeyesdeleuze
authored andcommitted
Fix broken Javadoc related to < and >
1 parent 71e2d8e commit 2defb65

File tree

24 files changed

+48
-48
lines changed

24 files changed

+48
-48
lines changed

spring-aop/src/main/java/org/springframework/aop/config/AdvisorComponentDefinition.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
/**
2626
* {@link org.springframework.beans.factory.parsing.ComponentDefinition}
2727
* that bridges the gap between the advisor bean definition configured
28-
* by the {@code &lt;aop:advisor&gt;} tag and the component definition
28+
* by the {@code <aop:advisor>} tag and the component definition
2929
* infrastructure.
3030
*
3131
* @author Rob Harrop

spring-aop/src/main/java/org/springframework/aop/config/AopNamespaceHandler.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
* {@code NamespaceHandler} for the {@code aop} namespace.
2525
*
2626
* <p>Provides a {@link org.springframework.beans.factory.xml.BeanDefinitionParser} for the
27-
* {@code &lt;aop:config&gt;} tag. A {@code config} tag can include nested
27+
* {@code <aop:config>} tag. A {@code config} tag can include nested
2828
* {@code pointcut}, {@code advisor} and {@code aspect} tags.
2929
*
3030
* <p>The {@code pointcut} tag allows for creation of named

spring-aop/src/main/java/org/springframework/aop/config/ConfigBeanDefinitionParser.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
import org.springframework.util.xml.DomUtils;
5050

5151
/**
52-
* {@link BeanDefinitionParser} for the {@code &lt;aop:config&gt;} tag.
52+
* {@link BeanDefinitionParser} for the {@code <aop:config>} tag.
5353
*
5454
* @author Rob Harrop
5555
* @author Juergen Hoeller
@@ -123,7 +123,7 @@ else if (ASPECT.equals(localName)) {
123123

124124
/**
125125
* Configures the auto proxy creator needed to support the {@link BeanDefinition BeanDefinitions}
126-
* created by the '{@code &lt;aop:config/&gt;}' tag. Will force class proxying if the
126+
* created by the '{@code <aop:config/>}' tag. Will force class proxying if the
127127
* '{@code proxy-target-class}' attribute is set to '{@code true}'.
128128
* @see AopNamespaceUtils
129129
*/
@@ -132,7 +132,7 @@ private void configureAutoProxyCreator(ParserContext parserContext, Element elem
132132
}
133133

134134
/**
135-
* Parses the supplied {@code &lt;advisor&gt;} element and registers the resulting
135+
* Parses the supplied {@code <advisor>} element and registers the resulting
136136
* {@link org.springframework.aop.Advisor} and any resulting {@link org.springframework.aop.Pointcut}
137137
* with the supplied {@link BeanDefinitionRegistry}.
138138
*/
@@ -428,7 +428,7 @@ else if (AROUND.equals(elementName)) {
428428
}
429429

430430
/**
431-
* Parses the supplied {@code &lt;pointcut&gt;} and registers the resulting
431+
* Parses the supplied {@code <pointcut>} and registers the resulting
432432
* Pointcut with the BeanDefinitionRegistry.
433433
*/
434434
private AbstractBeanDefinition parsePointcut(Element pointcutElement, ParserContext parserContext) {

spring-aop/src/main/java/org/springframework/aop/config/ScopedProxyBeanDefinitionDecorator.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727

2828
/**
2929
* {@link BeanDefinitionDecorator} responsible for parsing the
30-
* {@code &lt;aop:scoped-proxy/&gt;} tag.
30+
* {@code <aop:scoped-proxy/>} tag.
3131
*
3232
* @author Rob Harrop
3333
* @author Juergen Hoeller

spring-beans/src/main/java/org/springframework/beans/factory/support/AbstractBeanDefinition.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -826,7 +826,7 @@ public boolean isEnforceDestroyMethod() {
826826
/**
827827
* Set whether this bean definition is 'synthetic', that is, not defined
828828
* by the application itself (for example, an infrastructure bean such
829-
* as a helper for auto-proxying, created through {@code &ltaop:config&gt;}).
829+
* as a helper for auto-proxying, created through {@code <aop:config>}).
830830
*/
831831
public void setSynthetic(boolean synthetic) {
832832
this.synthetic = synthetic;

spring-beans/src/main/java/org/springframework/beans/factory/xml/AbstractSimpleBeanDefinitionParser.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@
9090
* <pre class="code">&lt;util:properties location="jdbc.properties"/&gt;</pre>
9191
*
9292
* <p>The observant reader will notice that the sole attribute on the
93-
* {@code &lt;util:properties/&gt;} element matches the
93+
* {@code <util:properties/>} element matches the
9494
* {@link org.springframework.beans.factory.config.PropertiesFactoryBean#setLocation(org.springframework.core.io.Resource)}
9595
* method name on the {@code PropertiesFactoryBean} (the general
9696
* usage thus illustrated holds true for any number of attributes).

spring-beans/src/main/java/org/springframework/beans/factory/xml/BeanDefinitionDecorator.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,15 +22,15 @@
2222

2323
/**
2424
* Interface used by the {@link DefaultBeanDefinitionDocumentReader}
25-
* to handle custom, nested (directly under a {@code &lt;bean&gt;}) tags.
25+
* to handle custom, nested (directly under a {@code <bean>}) tags.
2626
*
2727
* <p>Decoration may also occur based on custom attributes applied to the
28-
* {@code &lt;bean&gt;} tag. Implementations are free to turn the metadata in the
28+
* {@code <bean>} tag. Implementations are free to turn the metadata in the
2929
* custom tag into as many
3030
* {@link org.springframework.beans.factory.config.BeanDefinition BeanDefinitions} as
3131
* required and to transform the
3232
* {@link org.springframework.beans.factory.config.BeanDefinition} of the enclosing
33-
* {@code &lt;bean&gt;} tag, potentially even returning a completely different
33+
* {@code <bean>} tag, potentially even returning a completely different
3434
* {@link org.springframework.beans.factory.config.BeanDefinition} to replace the
3535
* original.
3636
*

spring-beans/src/main/java/org/springframework/beans/factory/xml/BeanDefinitionParserDelegate.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -398,7 +398,7 @@ public DocumentDefaultsDefinition getDefaults() {
398398

399399
/**
400400
* Return the default settings for bean definitions as indicated within
401-
* the attributes of the top-level {@code &lt;beans/&gt;} element.
401+
* the attributes of the top-level {@code <beans/>} element.
402402
*/
403403
public BeanDefinitionDefaults getBeanDefinitionDefaults() {
404404
BeanDefinitionDefaults bdd = new BeanDefinitionDefaults();
@@ -412,7 +412,7 @@ public BeanDefinitionDefaults getBeanDefinitionDefaults() {
412412

413413
/**
414414
* Return any patterns provided in the 'default-autowire-candidates'
415-
* attribute of the top-level {@code &lt;beans/&gt;} element.
415+
* attribute of the top-level {@code <beans/>} element.
416416
*/
417417
public String[] getAutowireCandidatePatterns() {
418418
String candidatePattern = this.defaults.getAutowireCandidates();
@@ -421,7 +421,7 @@ public String[] getAutowireCandidatePatterns() {
421421

422422

423423
/**
424-
* Parses the supplied {@code &lt;bean&gt;} element. May return {@code null}
424+
* Parses the supplied {@code <bean>} element. May return {@code null}
425425
* if there were errors during parse. Errors are reported to the
426426
* {@link org.springframework.beans.factory.parsing.ProblemReporter}.
427427
*/
@@ -430,7 +430,7 @@ public BeanDefinitionHolder parseBeanDefinitionElement(Element ele) {
430430
}
431431

432432
/**
433-
* Parses the supplied {@code &lt;bean&gt;} element. May return {@code null}
433+
* Parses the supplied {@code <bean>} element. May return {@code null}
434434
* if there were errors during parse. Errors are reported to the
435435
* {@link org.springframework.beans.factory.parsing.ProblemReporter}.
436436
*/
@@ -1011,7 +1011,7 @@ public Object parsePropertySubElement(Element ele, BeanDefinition bd) {
10111011
* constructor-arg element.
10121012
* @param ele subelement of property element; we don't know which yet
10131013
* @param defaultValueType the default type (class name) for any
1014-
* {@code &lt;value&gt;} tag that might be created
1014+
* {@code <value>} tag that might be created
10151015
*/
10161016
public Object parsePropertySubElement(Element ele, BeanDefinition bd, String defaultValueType) {
10171017
if (!isDefaultNamespace(ele)) {

spring-beans/src/main/java/org/springframework/beans/factory/xml/DocumentDefaultsDefinition.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
import org.springframework.beans.factory.parsing.DefaultsDefinition;
2020

2121
/**
22-
* Simple JavaBean that holds the defaults specified at the {@code &lt;beans&gt;}
22+
* Simple JavaBean that holds the defaults specified at the {@code <beans>}
2323
* level in a standard Spring XML bean definition document:
2424
* {@code default-lazy-init}, {@code default-autowire}, etc.
2525
*

spring-beans/src/main/java/org/springframework/beans/factory/xml/NamespaceHandler.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@
3232
* custom nested tags.
3333
*
3434
* <p>The parser will call {@link #parse} when it encounters a custom tag
35-
* directly under the {@code &lt;beans&gt;} tags and {@link #decorate} when
36-
* it encounters a custom tag directly under a {@code &lt;bean&gt;} tag.
35+
* directly under the {@code <beans>} tags and {@link #decorate} when
36+
* it encounters a custom tag directly under a {@code <bean>} tag.
3737
*
3838
* <p>Developers writing their own custom element extensions typically will
3939
* not implement this interface directly, but rather make use of the provided
@@ -61,7 +61,7 @@ public interface NamespaceHandler {
6161
* that is embedded in the supplied {@link ParserContext}.
6262
* <p>Implementations should return the primary {@code BeanDefinition}
6363
* that results from the parse phase if they wish to be used nested
64-
* inside (for example) a {@code &lt;property&gt;} tag.
64+
* inside (for example) a {@code <property>} tag.
6565
* <p>Implementations may return {@code null} if they will
6666
* <strong>not</strong> be used in a nested scenario.
6767
* @param element the element that is to be parsed into one or more {@code BeanDefinitions}

0 commit comments

Comments
 (0)