File tree Expand file tree Collapse file tree 5 files changed +13
-10
lines changed
commons-digester3-core/src/main/java/org/apache/commons/digester3 Expand file tree Collapse file tree 5 files changed +13
-10
lines changed Original file line number Diff line number Diff line change 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 */
4141public class CallParamRule
Original file line number Diff line number Diff 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.
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 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.
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments