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 8b93e688 Javadoc 8b93e688 is described below commit 8b93e688af76de46042c6f417f807e5388e93de0 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Sun Dec 17 14:33:52 2023 -0500 Javadoc --- .../org/apache/commons/digester3/CallMethodRule.java | 4 ++-- .../commons/digester3/binder/CallMethodBuilder.java | 4 ++-- .../commons/digester3/xmlrules/FromXmlRulesModule.java | 16 ++++++++-------- 3 files changed, 12 insertions(+), 12 deletions(-) diff --git a/commons-digester3-core/src/main/java/org/apache/commons/digester3/CallMethodRule.java b/commons-digester3-core/src/main/java/org/apache/commons/digester3/CallMethodRule.java index 99b08dfa..4a418694 100644 --- a/commons-digester3-core/src/main/java/org/apache/commons/digester3/CallMethodRule.java +++ b/commons-digester3-core/src/main/java/org/apache/commons/digester3/CallMethodRule.java @@ -180,7 +180,7 @@ public class CallMethodRule * @param paramCount The number of parameters to collect, or zero for a single argument from the body of the element * @param paramTypes The Java classes that represent the parameter types of the method arguments (if you wish to use * a primitive type, specify the corresponding Java wrapper class instead, such as - * {@code java.lang.Boolean.TYPE} for a {@code boolean} parameter) + * {@link java.lang.Boolean#TYPE} for a {@code boolean} parameter) */ public CallMethodRule( final int targetOffset, final String methodName, final int paramCount, final Class<?>[] paramTypes ) { @@ -262,7 +262,7 @@ public class CallMethodRule * @param paramCount The number of parameters to collect, or zero for a single argument from the body of the element * @param paramTypes The Java classes that represent the parameter types of the method arguments (if you wish to use * a primitive type, specify the corresponding Java wrapper class instead, such as - * {@code java.lang.Boolean.TYPE} for a {@code boolean} parameter) + * {@link java.lang.Boolean#TYPE} for a {@code boolean} parameter) */ public CallMethodRule( final String methodName, final int paramCount, final Class<?> paramTypes[] ) { diff --git a/commons-digester3-core/src/main/java/org/apache/commons/digester3/binder/CallMethodBuilder.java b/commons-digester3-core/src/main/java/org/apache/commons/digester3/binder/CallMethodBuilder.java index 676b00c4..4b42ee57 100644 --- a/commons-digester3-core/src/main/java/org/apache/commons/digester3/binder/CallMethodBuilder.java +++ b/commons-digester3-core/src/main/java/org/apache/commons/digester3/binder/CallMethodBuilder.java @@ -126,7 +126,7 @@ public final class CallMethodBuilder * Sets the Java classes that represent the parameter types of the method arguments. * * If you wish to use a primitive type, specify the corresonding Java wrapper class instead, - * such as {@code java.lang.Boolean.TYPE} for a {@code boolean} parameter. + * such as {@link java.lang.Boolean#TYPE} for a {@code boolean} parameter. * * @param paramTypes The Java classes that represent the parameter types of the method arguments * @return this builder instance @@ -151,7 +151,7 @@ public final class CallMethodBuilder * Sets the Java class names that represent the parameter types of the method arguments. * * If you wish to use a primitive type, specify the corresonding Java wrapper class instead, - * such as {@code java.lang.Boolean.TYPE} for a {@code boolean} parameter. + * such as {@link java.lang.Boolean#TYPE} for a {@code boolean} parameter. * * @param paramTypeNames The Java classes names that represent the parameter types of the method arguments * @return this builder instance diff --git a/commons-digester3-core/src/main/java/org/apache/commons/digester3/xmlrules/FromXmlRulesModule.java b/commons-digester3-core/src/main/java/org/apache/commons/digester3/xmlrules/FromXmlRulesModule.java index 8a95f7d4..e04f86fb 100644 --- a/commons-digester3-core/src/main/java/org/apache/commons/digester3/xmlrules/FromXmlRulesModule.java +++ b/commons-digester3-core/src/main/java/org/apache/commons/digester3/xmlrules/FromXmlRulesModule.java @@ -93,9 +93,9 @@ public abstract class FromXmlRulesModule protected abstract void loadRules(); /** - * Opens a new {@code org.xml.sax.InputSource} given a {@code java.io.File}. + * Opens a new {@code org.xml.sax.InputSource} given a {@link java.io.File}. * - * @param file The {@code java.io.File} where reading the XML rules from. + * @param file The {@link java.io.File} where reading the XML rules from. */ protected final void loadXMLRules( final File file ) { @@ -152,9 +152,9 @@ public abstract class FromXmlRulesModule } /** - * Opens a new {@code org.xml.sax.InputSource} given a {@code java.io.InputStream}. + * Opens a new {@code org.xml.sax.InputSource} given a {@link java.io.InputStream}. * - * @param input The {@code java.io.InputStream} where reading the XML rules from. + * @param input The {@link java.io.InputStream} where reading the XML rules from. */ protected final void loadXMLRules( final InputStream input ) { @@ -167,9 +167,9 @@ public abstract class FromXmlRulesModule } /** - * Opens a new {@code org.xml.sax.InputSource} given a {@code java.io.Reader}. + * Opens a new {@code org.xml.sax.InputSource} given a {@link java.io.Reader}. * - * @param reader The {@code java.io.Reader} where reading the XML rules from. + * @param reader The {@link java.io.Reader} where reading the XML rules from. */ protected final void loadXMLRules( final Reader reader ) { @@ -204,9 +204,9 @@ public abstract class FromXmlRulesModule } /** - * Opens a new {@code org.xml.sax.InputSource} given a {@code java.net.URL}. + * Opens a new {@code org.xml.sax.InputSource} given a {@link java.net.URL}. * - * @param url The {@code java.net.URL} where reading the XML rules from. + * @param url The {@link java.net.URL} where reading the XML rules from. */ protected final void loadXMLRules( final URL url ) {