Skip to content

Commit 31036ea

Browse files
committed
Fix malformed Javadoc comments
1 parent 1feb551 commit 31036ea

File tree

5 files changed

+13
-10
lines changed

5 files changed

+13
-10
lines changed

commons-digester3-core/src/main/java/org/apache/commons/digester3/CallParamRule.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,10 @@
3232
* This parameter may be:
3333
* </p>
3434
* <ul>
35-
* <li>from an attribute of the current element See {@link #CallParamRule(int paramIndex, String attributeName)}
36-
* <li>from current the element body See {@link #CallParamRule(int paramIndex)}
37-
* <li>from the top object on the stack. See {@link #CallParamRule(int paramIndex, boolean fromStack)}
38-
* <li>the current path being processed (separate {@code Rule}). See {@link PathCallParamRule}
35+
* <li>from an attribute of the current element See {@link #CallParamRule(int paramIndex, String attributeName)}</li>
36+
* <li>from current the element body See {@link #CallParamRule(int paramIndex)}</li>
37+
* <li>from the top object on the stack. See {@link #CallParamRule(int paramIndex, boolean fromStack)}</li>
38+
* <li>the current path being processed (separate {@code Rule}). See {@link PathCallParamRule}</li>
3939
* </ul>
4040
*/
4141
public class CallParamRule

commons-digester3-core/src/main/java/org/apache/commons/digester3/Digester.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1449,7 +1449,7 @@ public String findNamespaceURI( final String prefix )
14491449
* <li>The class loader set by {@code setClassLoader()}, if any</li>
14501450
* <li>The thread context class loader, if it exists and the {@code useContextClassLoader} property is set to
14511451
* true</li>
1452-
* <li>The class loader used to load the Digester class itself.
1452+
* <li>The class loader used to load the Digester class itself.</li>
14531453
* </ul>
14541454
*
14551455
* @return the class loader to be used for instantiating application objects.

commons-digester3-core/src/main/java/org/apache/commons/digester3/ObjectParamRule.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,9 @@
3232
* </p>
3333
* <ul>
3434
* <li>an arbitrary Object defined programmatically, assigned when the element pattern associated with the Rule is
35-
* matched. See {@link #ObjectParamRule(int paramIndex, Object param)}.
35+
* matched. See {@link #ObjectParamRule(int paramIndex, Object param)}.</li>
3636
* <li>an arbitrary Object defined programmatically, assigned if the element pattern AND specified attribute name are
37-
* matched. See {@link #ObjectParamRule(int paramIndex, String attributeName, Object param)}.
37+
* matched. See {@link #ObjectParamRule(int paramIndex, String attributeName, Object param)}.</li>
3838
* </ul>
3939
*
4040
* @since 1.4

commons-digester3-core/src/main/java/org/apache/commons/digester3/SimpleRegexMatcher.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@
3030
* This uses just two wildcards:
3131
* </p>
3232
* <ul>
33-
* <li>{@code *} matches any sequence of none, one or more characters
34-
* <li>{@code ?} matches any one character
33+
* <li>{@code *} matches any sequence of none, one or more characters</li>
34+
* <li>{@code ?} matches any one character</li>
3535
* </ul>
3636
* <p>
3737
* Escaping these wildcards is not supported.

commons-digester3-core/src/main/java/org/apache/commons/digester3/plugins/RuleFinder.java

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,17 +45,20 @@ public abstract class RuleFinder
4545
* <p>
4646
* This method is invoked when a plugin is declared by the user, either via an explicit use of
4747
* PluginDeclarationRule, or implicitly via an "inline declaration" where the declaration and use are simultaneous.
48+
* </p>
4849
* <p>
4950
* If dynamic rules for the specified plugin class are located, then the RuleFinder will return a RuleLoader object
5051
* encapsulating those rules, and this object will be invoked each time the user actually requests an instance of
5152
* the declared plugin class, to load the custom rules associated with that plugin instance.
53+
* </p>
5254
* <p>
5355
* If no dynamic rules can be found, null is returned. This is not an error; merely an indication that this
5456
* particular algorithm found no matches.
57+
* </p>
5558
* <p>
5659
* The properties object holds any XML attributes the user may have specified on the plugin declaration in order to
5760
* indicate how to locate the plugin rules.
58-
* <p>
61+
* </p>
5962
*
6063
* @param d The digester instance where locating plugin classes
6164
* @param pluginClass The plugin Java class

0 commit comments

Comments
 (0)