This is an automated email from the ASF dual-hosted git repository. ggregory pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-digester.git
The following commit(s) were added to refs/heads/master by this push: new 605614d8 Javadoc: Use semantic tag <strong> instead of style tag <b> 605614d8 is described below commit 605614d8ca14bda5d047d4fcb86c481c8e718490 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Fri Nov 15 11:18:44 2024 -0500 Javadoc: Use semantic tag <strong> instead of style tag <b> --- .../org/apache/commons/digester3/SetNestedPropertiesRule.java | 6 +++--- .../main/java/org/apache/commons/digester3/SetPropertiesRule.java | 4 ++-- .../java/org/apache/commons/digester3/binder/DigesterLoader.java | 8 ++++---- .../org/apache/commons/digester3/binder/LinkedRuleBuilder.java | 2 +- .../commons/digester3/examples/api/documentmarkup/Main.java | 2 +- 5 files changed, 11 insertions(+), 11 deletions(-) diff --git a/commons-digester3-core/src/main/java/org/apache/commons/digester3/SetNestedPropertiesRule.java b/commons-digester3-core/src/main/java/org/apache/commons/digester3/SetNestedPropertiesRule.java index 5e5a7f07..b24bfcbb 100644 --- a/commons-digester3-core/src/main/java/org/apache/commons/digester3/SetNestedPropertiesRule.java +++ b/commons-digester3-core/src/main/java/org/apache/commons/digester3/SetNestedPropertiesRule.java @@ -75,7 +75,7 @@ import org.xml.sax.Attributes; * (or equivalent) to handle assigning the child object to the appropriate property instead. * </p> * <p> - * <b>Implementation Notes</b> + * <strong>Implementation Notes</strong> * </p> * <p> * This class works by creating its own simple Rules implementation. When begin is invoked on this rule, the digester's @@ -383,7 +383,7 @@ public class SetNestedPropertiesRule * If a property name is null or the XML element name has no matching property name due to the arrays being of * different lengths then this indicates that the XML element should be ignored. * </p> - * <b>Example One</b> + * <strong>Example One</strong> * <p> * The following constructs a rule that maps the {@code alt-city} element to the {@code city} property and * the {@code alt-state} to the {@code state} property. All other child elements are mapped as usual using @@ -394,7 +394,7 @@ public class SetNestedPropertiesRule * new String[] {"alt-city", "alt-state"}, * new String[] {"city", "state"}); * }</pre> - * <b>Example Two</b> + * <strong>Example Two</strong> * <p> * The following constructs a rule that maps the {@code class} XML element to the {@code className} * property. The XML element {@code ignore-me} is not mapped, ie is ignored. All other elements are mapped as diff --git a/commons-digester3-core/src/main/java/org/apache/commons/digester3/SetPropertiesRule.java b/commons-digester3-core/src/main/java/org/apache/commons/digester3/SetPropertiesRule.java index 09efae4d..062c7f98 100644 --- a/commons-digester3-core/src/main/java/org/apache/commons/digester3/SetPropertiesRule.java +++ b/commons-digester3-core/src/main/java/org/apache/commons/digester3/SetPropertiesRule.java @@ -103,7 +103,7 @@ public class SetPropertiesRule * If a property name is null or the attribute name has no matching property name, then this indicates that the * attribute should be ignored. * </p> - * <b>Example One</b> + * <strong>Example One</strong> * <p> * The following constructs a rule that maps the {@code alt-city} attribute to the {@code city} property * and the {@code alt-state} to the {@code state} property. All other attributes are mapped as usual using @@ -114,7 +114,7 @@ public class SetPropertiesRule * new String[] {"alt-city", "alt-state"}, * new String[] {"city", "state"}); * }</pre> - * <b>Example Two</b> + * <strong>Example Two</strong> * <p> * The following constructs a rule that maps the {@code class} attribute to the {@code className} * property. The attribute {@code ignore-me} is not mapped. All other attributes are mapped as usual using diff --git a/commons-digester3-core/src/main/java/org/apache/commons/digester3/binder/DigesterLoader.java b/commons-digester3-core/src/main/java/org/apache/commons/digester3/binder/DigesterLoader.java index 2d674a12..1980de17 100644 --- a/commons-digester3-core/src/main/java/org/apache/commons/digester3/binder/DigesterLoader.java +++ b/commons-digester3-core/src/main/java/org/apache/commons/digester3/binder/DigesterLoader.java @@ -364,8 +364,8 @@ public final class DigesterLoader * Creates a new {@link XMLReader} instance that relies on the given {@code XMLReader} * and the default {@link Rules} implementation. * - * <b>WARNING</b> Input {@link XMLReader} will be linked to built Digester instance so it is recommended - * to <b>NOT</b> share same {@link XMLReader} instance to produce the Digester. + * <strong>WARNING</strong> Input {@link XMLReader} will be linked to built Digester instance so it is recommended + * to <strong>NOT</strong> share same {@link XMLReader} instance to produce the Digester. * * @param reader The user-defined {@code XMLReader} * @return a new {@link Digester} instance @@ -379,8 +379,8 @@ public final class DigesterLoader * Creates a new {@link XMLReader} instance that relies on the given {@code XMLReader} * and custom user define {@link Rules} implementation. * - * <b>WARNING</b> Input {@link XMLReader} and {@link Rules} will be linked to built Digester instance, - * so it is recommended to <b>NOT</b> share same {@link XMLReader} and {@link Rules} instance to produce the Digester. + * <strong>WARNING</strong> Input {@link XMLReader} and {@link Rules} will be linked to built Digester instance, + * so it is recommended to <strong>NOT</strong> share same {@link XMLReader} and {@link Rules} instance to produce the Digester. * * @param reader The user-defined {@code XMLReader} * @param rules The custom user define {@link Rules} implementation diff --git a/commons-digester3-core/src/main/java/org/apache/commons/digester3/binder/LinkedRuleBuilder.java b/commons-digester3-core/src/main/java/org/apache/commons/digester3/binder/LinkedRuleBuilder.java index 4c7e5f8a..edeff29c 100644 --- a/commons-digester3-core/src/main/java/org/apache/commons/digester3/binder/LinkedRuleBuilder.java +++ b/commons-digester3-core/src/main/java/org/apache/commons/digester3/binder/LinkedRuleBuilder.java @@ -64,7 +64,7 @@ public final class LinkedRuleBuilder /** * Add a custom user rule in the specified pattern. * - * <b>WARNING</b> keep away from this method as much as you can, since there's the risk + * <strong>WARNING</strong> keep away from this method as much as you can, since there's the risk * same input {@link Rule} instance is plugged to more than one Digester; * use {@link #addRuleCreatedBy(RuleProvider)} instead!!! * diff --git a/commons-digester3-examples/api/document-markup/src/main/java/org/apache/commons/digester3/examples/api/documentmarkup/Main.java b/commons-digester3-examples/api/document-markup/src/main/java/org/apache/commons/digester3/examples/api/documentmarkup/Main.java index 9176c3a0..190558bb 100644 --- a/commons-digester3-examples/api/document-markup/src/main/java/org/apache/commons/digester3/examples/api/documentmarkup/Main.java +++ b/commons-digester3-examples/api/document-markup/src/main/java/org/apache/commons/digester3/examples/api/documentmarkup/Main.java @@ -37,7 +37,7 @@ public class Main } /** The input XML to be parsed by this example. */ - String in = "<p>Hi, this is an <em>example</em> of some <b>bold</b> text.</p>"; + String in = "<p>Hi, this is an <em>example</em> of some <strong>bold</strong> text.</p>"; /** * Invoked via a standard Digester CallMethodRule, passing the