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 89e0e159 Javadoc
89e0e159 is described below

commit 89e0e1597dc7a51c90115a4ad13e05e6cde61c7d
Author: Gary Gregory <[email protected]>
AuthorDate: Wed Jan 17 10:33:10 2024 -0500

    Javadoc
---
 .../org/apache/commons/digester3/Digester.java     | 44 +++++++++++-----------
 .../commons/digester3/FactoryCreateRule.java       |  2 +-
 .../java/org/apache/commons/digester3/Rule.java    |  4 +-
 .../java/org/apache/commons/digester3/RuleSet.java |  2 +-
 .../java/org/apache/commons/digester3/Rules.java   |  8 ++--
 .../commons/digester3/SetNestedPropertiesRule.java |  4 +-
 .../commons/digester3/binder/DigesterLoader.java   |  4 +-
 .../commons/digester3/plugins/Declaration.java     |  4 +-
 .../commons/digester3/plugins/PluginContext.java   |  2 +-
 .../digester3/plugins/PluginCreateRule.java        |  2 +-
 .../commons/digester3/plugins/PluginManager.java   |  4 +-
 .../commons/digester3/plugins/PluginRules.java     | 12 +++---
 .../java/org/apache/commons/digester3/Box.java     |  2 +-
 .../commons/digester3/CallMethodRuleTestCase.java  |  2 +-
 .../digester3/NamespaceSnapshotTestCase.java       |  2 +-
 .../commons/digester3/NodeCreateRuleTestCase.java  |  2 +-
 .../org/apache/commons/digester3/RuleTestCase.java |  2 +-
 .../apache/commons/digester3/XIncludeTestCase.java |  2 +-
 .../commons/digester3/XMLSchemaTestCase.java       |  2 +-
 .../apache/commons/digester3/plugins/Utils.java    |  2 +-
 .../org/apache/commons/digester3/rss/Channel.java  | 12 +++---
 21 files changed, 60 insertions(+), 60 deletions(-)

diff --git 
a/commons-digester3-core/src/main/java/org/apache/commons/digester3/Digester.java
 
b/commons-digester3-core/src/main/java/org/apache/commons/digester3/Digester.java
index 0acf1c55..c9e50111 100644
--- 
a/commons-digester3-core/src/main/java/org/apache/commons/digester3/Digester.java
+++ 
b/commons-digester3-core/src/main/java/org/apache/commons/digester3/Digester.java
@@ -1537,7 +1537,7 @@ public class Digester
     }
 
     /**
-     * Return the class loader to be used for instantiating application 
objects when required. This is determined based
+     * Gets the class loader to be used for instantiating application objects 
when required. This is determined based
      * upon the following rules:
      * <ul>
      * <li>The class loader set by {@code setClassLoader()}, if any</li>
@@ -1568,7 +1568,7 @@ public class Digester
     // ------------------------------------------------------- Public Methods
 
     /**
-     * Return the current depth of the element stack.
+     * Gets the current depth of the element stack.
      *
      * @return the current depth of the element stack.
      */
@@ -1578,7 +1578,7 @@ public class Digester
     }
 
     /**
-     * Return the name of the XML element that is currently being processed.
+     * Gets the name of the XML element that is currently being processed.
      *
      * @return the name of the XML element that is currently being processed.
      */
@@ -1646,7 +1646,7 @@ public class Digester
     }
 
     /**
-     * Return the Entity Resolver used by the SAX parser.
+     * Gets the Entity Resolver used by the SAX parser.
      *
      * @return the Entity Resolver used by the SAX parser.
      */
@@ -1656,7 +1656,7 @@ public class Digester
     }
 
     /**
-     * Return the error handler for this Digester.
+     * Gets the error handler for this Digester.
      *
      * @return the error handler for this Digester.
      */
@@ -1677,7 +1677,7 @@ public class Digester
     }
 
     /**
-     * Return the SAXParserFactory we will use, creating one if necessary.
+     * Gets the SAXParserFactory we will use, creating one if necessary.
      *
      * @return the SAXParserFactory we will use, creating one if necessary.
      */
@@ -1713,7 +1713,7 @@ public class Digester
     }
 
     /**
-     * Return the current Logger associated with this instance of the Digester
+     * Gets the current Logger associated with this instance of the Digester
      *
      * @return the current Logger associated with this instance of the Digester
      */
@@ -1723,7 +1723,7 @@ public class Digester
     }
 
     /**
-     * Return the current rule match path
+     * Gets the current rule match path
      *
      * @return the current rule match path
      */
@@ -1733,7 +1733,7 @@ public class Digester
     }
 
     /**
-     * Return a Stack whose elements are List objects, each containing a list 
of
+     * Gets a Stack whose elements are List objects, each containing a list of
      * Rule objects as returned from Rules.getMatch().
      *
      * @return a Stack whose elements are List objects, each containing a list 
of
@@ -1746,7 +1746,7 @@ public class Digester
     }
 
     /**
-     * Return the "namespace aware" flag for parsers we create.
+     * Gets the "namespace aware" flag for parsers we create.
      *
      * @return the "namespace aware" flag for parsers we create.
      */
@@ -1756,7 +1756,7 @@ public class Digester
     }
 
     /**
-     * Return the SAXParser we will use to parse the input stream.
+     * Gets the SAXParser we will use to parse the input stream.
      *
      * If there is a problem creating the parser, return {@code null}.
      *
@@ -1785,7 +1785,7 @@ public class Digester
     }
 
     /**
-     * Return the current value of the specified property for the underlying 
{@code XMLReader} implementation.
+     * Gets the current value of the specified property for the underlying 
{@code XMLReader} implementation.
      *
      * See <a href="http://www.saxproject.org";>the saxproject website</a> for 
information about the standard SAX2
      * properties.
@@ -1802,7 +1802,7 @@ public class Digester
     }
 
     /**
-     * Return the public identifier of the DTD we are currently parsing under, 
if any.
+     * Gets the public identifier of the DTD we are currently parsing under, 
if any.
      *
      * @return the public identifier of the DTD we are currently parsing 
under, if any.
      */
@@ -1812,7 +1812,7 @@ public class Digester
     }
 
     /**
-     * Return the set of DTD URL registrations, keyed by public identifier. 
NOTE: the returned map is in read-only mode.
+     * Gets the set of DTD URL registrations, keyed by public identifier. 
NOTE: the returned map is in read-only mode.
      *
      * @return the read-only Map of DTD URL registrations.
      */
@@ -1850,7 +1850,7 @@ public class Digester
     // --------------------------------------------------------- Rule Methods
 
     /**
-     * Return the namespace URI that will be applied to all subsequently added 
{@code Rule} objects.
+     * Gets the namespace URI that will be applied to all subsequently added 
{@code Rule} objects.
      *
      * @return the namespace URI that will be applied to all subsequently 
added {@code Rule} objects.
      */
@@ -1860,7 +1860,7 @@ public class Digester
     }
 
     /**
-     * Return the {@code Rules} implementation object containing our rules 
collection and associated matching
+     * Gets the {@code Rules} implementation object containing our rules 
collection and associated matching
      * policy. If none has been established, a default implementation will be 
created and returned.
      *
      * @return the {@code Rules} implementation object.
@@ -1887,7 +1887,7 @@ public class Digester
     }
 
     /**
-     * Return the callback object which is invoked whenever an object is 
pushed onto a digester object stack,
+     * Gets the callback object which is invoked whenever an object is pushed 
onto a digester object stack,
      * or popped off one.
      *
      * @return the callback object which is invoked whenever an object is 
pushed onto a digester object stack,
@@ -1912,7 +1912,7 @@ public class Digester
     }
 
     /**
-     * Return the boolean as to whether the context ClassLoader should be used.
+     * Gets the boolean as to whether the context ClassLoader should be used.
      *
      * @return true, if the context ClassLoader should be used, false 
otherwise.
      */
@@ -1922,7 +1922,7 @@ public class Digester
     }
 
     /**
-     * Return the validating parser flag.
+     * Gets the validating parser flag.
      *
      * @return the validating parser flag.
      */
@@ -1932,7 +1932,7 @@ public class Digester
     }
 
     /**
-     * Return the XInclude-aware flag for parsers we create. XInclude 
functionality additionally requires
+     * Gets the XInclude-aware flag for parsers we create. XInclude 
functionality additionally requires
      * namespace-awareness.
      *
      * @return The XInclude-aware flag
@@ -1945,7 +1945,7 @@ public class Digester
     }
 
     /**
-     * Return the XMLReader to be used for parsing the input document.
+     * Gets the XMLReader to be used for parsing the input document.
      *
      * FIXME: there is a bug in JAXP/XERCES that prevent the use of a parser 
that contains a schema with a DTD.
      *
@@ -1985,7 +1985,7 @@ public class Digester
     }
 
     /**
-     * Return the XML Schema used when parsing.
+     * Gets the XML Schema used when parsing.
      *
      * @return The {@link Schema} instance in use.
      * @since 2.0
diff --git 
a/commons-digester3-core/src/main/java/org/apache/commons/digester3/FactoryCreateRule.java
 
b/commons-digester3-core/src/main/java/org/apache/commons/digester3/FactoryCreateRule.java
index 4c4d3e15..390d9fad 100644
--- 
a/commons-digester3-core/src/main/java/org/apache/commons/digester3/FactoryCreateRule.java
+++ 
b/commons-digester3-core/src/main/java/org/apache/commons/digester3/FactoryCreateRule.java
@@ -333,7 +333,7 @@ public class FactoryCreateRule
     }
 
     /**
-     * Return an instance of our associated object creation factory, creating 
one if necessary.
+     * Gets an instance of our associated object creation factory, creating 
one if necessary.
      *
      * @param attributes Attributes passed to our factory creation element
      * @return An instance of our associated object creation factory, creating 
one if necessary
diff --git 
a/commons-digester3-core/src/main/java/org/apache/commons/digester3/Rule.java 
b/commons-digester3-core/src/main/java/org/apache/commons/digester3/Rule.java
index 5bb61377..fb6daf58 100644
--- 
a/commons-digester3-core/src/main/java/org/apache/commons/digester3/Rule.java
+++ 
b/commons-digester3-core/src/main/java/org/apache/commons/digester3/Rule.java
@@ -128,7 +128,7 @@ import org.xml.sax.Attributes;
     // --------------------------------------------------------- Public Methods
 
     /**
-     * Return the Digester with which this Rule is associated.
+     * Gets the Digester with which this Rule is associated.
      *
      * @return the Digester with which this Rule is associated
      */
@@ -138,7 +138,7 @@ import org.xml.sax.Attributes;
     }
 
     /**
-     * Return the namespace URI for which this Rule is relevant, if any.
+     * Gets the namespace URI for which this Rule is relevant, if any.
      *
      * @return the namespace URI for which this Rule is relevant, if any
      */
diff --git 
a/commons-digester3-core/src/main/java/org/apache/commons/digester3/RuleSet.java
 
b/commons-digester3-core/src/main/java/org/apache/commons/digester3/RuleSet.java
index a0288288..9ce25b2e 100644
--- 
a/commons-digester3-core/src/main/java/org/apache/commons/digester3/RuleSet.java
+++ 
b/commons-digester3-core/src/main/java/org/apache/commons/digester3/RuleSet.java
@@ -51,7 +51,7 @@ public interface RuleSet
     // --------------------------------------------------------- Public Methods
 
     /**
-     * Return the namespace URI that will be applied to all Rule instances 
created from this RuleSet.
+     * Gets the namespace URI that will be applied to all Rule instances 
created from this RuleSet.
      *
      * @return the namespace URI that will be applied to all Rule instances 
created from this RuleSet
      */
diff --git 
a/commons-digester3-core/src/main/java/org/apache/commons/digester3/Rules.java 
b/commons-digester3-core/src/main/java/org/apache/commons/digester3/Rules.java
index db06aaaf..f40209cb 100644
--- 
a/commons-digester3-core/src/main/java/org/apache/commons/digester3/Rules.java
+++ 
b/commons-digester3-core/src/main/java/org/apache/commons/digester3/Rules.java
@@ -47,14 +47,14 @@ public interface Rules
     void clear();
 
     /**
-     * Return the Digester instance with which this Rules instance is 
associated.
+     * Gets the Digester instance with which this Rules instance is associated.
      *
      * @return the Digester instance with which this Rules instance is 
associated
      */
     Digester getDigester();
 
     /**
-     * Return the namespace URI that will be applied to all subsequently added 
{@code Rule} objects.
+     * Gets the namespace URI that will be applied to all subsequently added 
{@code Rule} objects.
      *
      * @return the namespace URI that will be applied to all subsequently 
added {@code Rule} objects.
      */
@@ -63,7 +63,7 @@ public interface Rules
     // --------------------------------------------------------- Public Methods
 
     /**
-     * Return a List of all registered Rule instances that match the specified 
nesting pattern, or a zero-length List if
+     * Gets a List of all registered Rule instances that match the specified 
nesting pattern, or a zero-length List if
      * there are no matches. If more than one Rule instance matches, they 
<strong>must</strong> be returned in the order
      * originally registered through the {@code add()} method.
      *
@@ -77,7 +77,7 @@ public interface Rules
     List<Rule> match( String namespaceURI, String pattern, String name, 
Attributes attributes );
 
     /**
-     * Return a List of all registered Rule instances, or a zero-length List 
if there are no registered Rule instances.
+     * Gets a List of all registered Rule instances, or a zero-length List if 
there are no registered Rule instances.
      * If more than one Rule instance has been registered, they 
<strong>must</strong> be returned in the order
      * originally registered through the {@code add()} method.
      *
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 ae9c11b9..4fce43ff 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
@@ -470,7 +470,7 @@ public class SetNestedPropertiesRule
     }
 
     /**
-     * Return the flag to ignore any child element for which there is no 
corresponding object property
+     * Gets the flag to ignore any child element for which there is no 
corresponding object property
      *
      * @return flag to ignore any child element for which there is no 
corresponding object property
      * @see #setAllowUnknownChildElements(boolean)
@@ -481,7 +481,7 @@ public class SetNestedPropertiesRule
     }
 
     /**
-     * Return the flag to have leading and trailing whitespace removed.
+     * Gets the flag to have leading and trailing whitespace removed.
      *
      * @see #setTrimData(boolean)
      * @return flag to have leading and trailing whitespace removed
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 152584f8..bb4bf40a 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
@@ -229,7 +229,7 @@ public final class DigesterLoader
     }
 
     /**
-     * Return the error handler for this Digester.
+     * Gets the error handler for this Digester.
      *
      * @return the error handler for this Digester.
      * @since 3.2
@@ -251,7 +251,7 @@ public final class DigesterLoader
     }
 
     /**
-     * Return the set of DTD URL registrations, keyed by public identifier.
+     * Gets the set of DTD URL registrations, keyed by public identifier.
      *
      * @return the set of DTD URL registrations.
      */
diff --git 
a/commons-digester3-core/src/main/java/org/apache/commons/digester3/plugins/Declaration.java
 
b/commons-digester3-core/src/main/java/org/apache/commons/digester3/plugins/Declaration.java
index e7604a1f..a1b76b83 100644
--- 
a/commons-digester3-core/src/main/java/org/apache/commons/digester3/plugins/Declaration.java
+++ 
b/commons-digester3-core/src/main/java/org/apache/commons/digester3/plugins/Declaration.java
@@ -128,7 +128,7 @@ public class Declaration
     }
 
     /**
-     * Return the id associated with this declaration. For plugins declared 
"inline", null will be returned.
+     * Gets the id associated with this declaration. For plugins declared 
"inline", null will be returned.
      *
      * @return The id value. May be null.
      */
@@ -138,7 +138,7 @@ public class Declaration
     }
 
     /**
-     * Return plugin class associated with this declaration.
+     * Gets plugin class associated with this declaration.
      *
      * @return The pluginClass.
      */
diff --git 
a/commons-digester3-core/src/main/java/org/apache/commons/digester3/plugins/PluginContext.java
 
b/commons-digester3-core/src/main/java/org/apache/commons/digester3/plugins/PluginContext.java
index affafe61..6edf7344 100644
--- 
a/commons-digester3-core/src/main/java/org/apache/commons/digester3/plugins/PluginContext.java
+++ 
b/commons-digester3-core/src/main/java/org/apache/commons/digester3/plugins/PluginContext.java
@@ -129,7 +129,7 @@ public class PluginContext
     }
 
     /**
-     * Return the list of RuleFinder objects. Under normal circumstances this 
method creates a default list of these
+     * Gets the list of RuleFinder objects. Under normal circumstances this 
method creates a default list of these
      * objects when first called (ie "on-demand" or "lazy initialization"). 
However if setRuleFinders has been called
      * first, then the list specified there is returned.
      * <p>
diff --git 
a/commons-digester3-core/src/main/java/org/apache/commons/digester3/plugins/PluginCreateRule.java
 
b/commons-digester3-core/src/main/java/org/apache/commons/digester3/plugins/PluginCreateRule.java
index a6a929f9..89149abd 100644
--- 
a/commons-digester3-core/src/main/java/org/apache/commons/digester3/plugins/PluginCreateRule.java
+++ 
b/commons-digester3-core/src/main/java/org/apache/commons/digester3/plugins/PluginCreateRule.java
@@ -441,7 +441,7 @@ public class PluginCreateRule
     }
 
     /**
-     * Return the pattern that this Rule is associated with.
+     * Gets the pattern that this Rule is associated with.
      * <p>
      * In general, Rule instances <i>can</i> be associated with multiple 
patterns. A PluginCreateRule, however, will
      * only function correctly when associated with a single pattern. It is 
possible to fix this, but I can't be
diff --git 
a/commons-digester3-core/src/main/java/org/apache/commons/digester3/plugins/PluginManager.java
 
b/commons-digester3-core/src/main/java/org/apache/commons/digester3/plugins/PluginManager.java
index b2f735d9..ccd07528 100644
--- 
a/commons-digester3-core/src/main/java/org/apache/commons/digester3/plugins/PluginManager.java
+++ 
b/commons-digester3-core/src/main/java/org/apache/commons/digester3/plugins/PluginManager.java
@@ -161,7 +161,7 @@ public class PluginManager
     }
 
     /**
-     * Return the declaration object with the specified class. If no such 
plugin is known, null is returned.
+     * Gets the declaration object with the specified class. If no such plugin 
is known, null is returned.
      *
      * @param className The {@link Declaration} class name
      * @return The Declaration instance obtained by the input class name
@@ -179,7 +179,7 @@ public class PluginManager
     }
 
     /**
-     * Return the declaration object with the specified id. If no such plugin 
is known, null is returned.
+     * Gets the declaration object with the specified id. If no such plugin is 
known, null is returned.
      *
      * @param id Description of the Parameter
      * @return The declaration value
diff --git 
a/commons-digester3-core/src/main/java/org/apache/commons/digester3/plugins/PluginRules.java
 
b/commons-digester3-core/src/main/java/org/apache/commons/digester3/plugins/PluginRules.java
index e91d4398..5a3c8b41 100644
--- 
a/commons-digester3-core/src/main/java/org/apache/commons/digester3/plugins/PluginRules.java
+++ 
b/commons-digester3-core/src/main/java/org/apache/commons/digester3/plugins/PluginRules.java
@@ -240,7 +240,7 @@ public class PluginRules
     }
 
     /**
-     * Return the Digester instance with which this instance is associated.
+     * Gets the Digester instance with which this instance is associated.
      *
      * @return the Digester instance with which this instance is associated.
      */
@@ -251,7 +251,7 @@ public class PluginRules
     }
 
     /**
-     * Return the namespace URI that will be applied to all subsequently added 
{@code Rule} objects.
+     * Gets the namespace URI that will be applied to all subsequently added 
{@code Rule} objects.
      *
      * @return the namespace URI that will be applied to all subsequently 
added {@code Rule} objects.
      */
@@ -262,7 +262,7 @@ public class PluginRules
     }
 
     /**
-     * Return the parent Rules object.
+     * Gets the parent Rules object.
      *
      * @return the parent Rules object.
      */
@@ -314,7 +314,7 @@ public class PluginRules
     // --------------------------------------------------------- Public Methods
 
     /**
-     * Return the object which "knows" about all declared plugins.
+     * Gets the object which "knows" about all declared plugins.
      *
      * @return The pluginManager value
      */
@@ -334,7 +334,7 @@ public class PluginRules
     }
 
     /**
-     * Return the rules factory object (or null if one has not been specified).
+     * Gets the rules factory object (or null if one has not been specified).
      *
      * @return the rules factory object.
      */
@@ -383,7 +383,7 @@ public class PluginRules
     }
 
     /**
-     * Return the list of rules registered with this object, in the order they 
were registered with this object.
+     * Gets the list of rules registered with this object, in the order they 
were registered with this object.
      * <p>
      * Note that Rule objects stored in parent Rules objects are not returned 
by this method.
      *
diff --git 
a/commons-digester3-core/src/test/java/org/apache/commons/digester3/Box.java 
b/commons-digester3-core/src/test/java/org/apache/commons/digester3/Box.java
index 0cbb95fa..f1cd61be 100644
--- a/commons-digester3-core/src/test/java/org/apache/commons/digester3/Box.java
+++ b/commons-digester3-core/src/test/java/org/apache/commons/digester3/Box.java
@@ -50,7 +50,7 @@ public class Box
     }
 
     /**
-     * Return a string containing this object's name value, followed by the 
names of all child objects (and their
+     * Gets a string containing this object's name value, followed by the 
names of all child objects (and their
      * children etc) in pre-order sequence. Each name is separated by a space 
from the preceding one.
      */
     public String getIds()
diff --git 
a/commons-digester3-core/src/test/java/org/apache/commons/digester3/CallMethodRuleTestCase.java
 
b/commons-digester3-core/src/test/java/org/apache/commons/digester3/CallMethodRuleTestCase.java
index f73e4bb0..e269e70d 100644
--- 
a/commons-digester3-core/src/test/java/org/apache/commons/digester3/CallMethodRuleTestCase.java
+++ 
b/commons-digester3-core/src/test/java/org/apache/commons/digester3/CallMethodRuleTestCase.java
@@ -45,7 +45,7 @@ public class CallMethodRuleTestCase
 {
 
     /**
-     * Return an appropriate InputStream for the specified test file (which 
must be inside our current package.
+     * Gets an appropriate InputStream for the specified test file (which must 
be inside our current package.
      *
      * @param name Name of the test file we want
      * @throws IOException if an input/output error occurs
diff --git 
a/commons-digester3-core/src/test/java/org/apache/commons/digester3/NamespaceSnapshotTestCase.java
 
b/commons-digester3-core/src/test/java/org/apache/commons/digester3/NamespaceSnapshotTestCase.java
index 232b2bad..3ab2e4c9 100644
--- 
a/commons-digester3-core/src/test/java/org/apache/commons/digester3/NamespaceSnapshotTestCase.java
+++ 
b/commons-digester3-core/src/test/java/org/apache/commons/digester3/NamespaceSnapshotTestCase.java
@@ -72,7 +72,7 @@ public class NamespaceSnapshotTestCase
     }
 
     /**
-     * Return an appropriate InputStream for the specified test file (which 
must be inside our current package.
+     * Gets an appropriate InputStream for the specified test file (which must 
be inside our current package.
      *
      * @param name Name of the test file we want
      * @throws IOException if an input/output error occurs
diff --git 
a/commons-digester3-core/src/test/java/org/apache/commons/digester3/NodeCreateRuleTestCase.java
 
b/commons-digester3-core/src/test/java/org/apache/commons/digester3/NodeCreateRuleTestCase.java
index b3e96369..060f9795 100644
--- 
a/commons-digester3-core/src/test/java/org/apache/commons/digester3/NodeCreateRuleTestCase.java
+++ 
b/commons-digester3-core/src/test/java/org/apache/commons/digester3/NodeCreateRuleTestCase.java
@@ -62,7 +62,7 @@ public class NodeCreateRuleTestCase
     // ------------------------------------------------ Individual Test Methods
 
     /**
-     * Return an appropriate InputStream for the specified test file (which 
must be inside our current package.
+     * Gets an appropriate InputStream for the specified test file (which must 
be inside our current package.
      *
      * @param name Name of the test file we want
      * @throws IOException if an input/output error occurs
diff --git 
a/commons-digester3-core/src/test/java/org/apache/commons/digester3/RuleTestCase.java
 
b/commons-digester3-core/src/test/java/org/apache/commons/digester3/RuleTestCase.java
index 2460d01f..a776ce46 100644
--- 
a/commons-digester3-core/src/test/java/org/apache/commons/digester3/RuleTestCase.java
+++ 
b/commons-digester3-core/src/test/java/org/apache/commons/digester3/RuleTestCase.java
@@ -51,7 +51,7 @@ public class RuleTestCase
     // --------------------------------------------------- Overall Test Methods
 
     /**
-     * Return an appropriate InputStream for the specified test file (which 
must be inside our current package.
+     * Gets an appropriate InputStream for the specified test file (which must 
be inside our current package.
      *
      * @param name Name of the test file we want
      * @throws IOException if an input/output error occurs
diff --git 
a/commons-digester3-core/src/test/java/org/apache/commons/digester3/XIncludeTestCase.java
 
b/commons-digester3-core/src/test/java/org/apache/commons/digester3/XIncludeTestCase.java
index 8298ca83..4d243016 100644
--- 
a/commons-digester3-core/src/test/java/org/apache/commons/digester3/XIncludeTestCase.java
+++ 
b/commons-digester3-core/src/test/java/org/apache/commons/digester3/XIncludeTestCase.java
@@ -40,7 +40,7 @@ public class XIncludeTestCase
     // ------------------------------------------------ Individual Test Methods
 
     /**
-     * Return an appropriate InputStream for the specified test file (which 
must be inside our current package.
+     * Gets an appropriate InputStream for the specified test file (which must 
be inside our current package.
      *
      * @param name Name of the test file we want
      * @throws IOException if an input/output error occurs
diff --git 
a/commons-digester3-core/src/test/java/org/apache/commons/digester3/XMLSchemaTestCase.java
 
b/commons-digester3-core/src/test/java/org/apache/commons/digester3/XMLSchemaTestCase.java
index d41dd35d..42881e5c 100644
--- 
a/commons-digester3-core/src/test/java/org/apache/commons/digester3/XMLSchemaTestCase.java
+++ 
b/commons-digester3-core/src/test/java/org/apache/commons/digester3/XMLSchemaTestCase.java
@@ -83,7 +83,7 @@ public class XMLSchemaTestCase
     protected Digester digester;
 
     /**
-     * Return an appropriate InputStream for the specified test file (which 
must be inside our current package.
+     * Gets an appropriate InputStream for the specified test file (which must 
be inside our current package.
      *
      * @param name Name of the test file we want
      * @throws IOException if an input/output error occurs
diff --git 
a/commons-digester3-core/src/test/java/org/apache/commons/digester3/plugins/Utils.java
 
b/commons-digester3-core/src/test/java/org/apache/commons/digester3/plugins/Utils.java
index 1610df21..4c76617e 100644
--- 
a/commons-digester3-core/src/test/java/org/apache/commons/digester3/plugins/Utils.java
+++ 
b/commons-digester3-core/src/test/java/org/apache/commons/digester3/plugins/Utils.java
@@ -27,7 +27,7 @@ public class Utils
 {
 
     /**
-     * Return an appropriate InputStream for the specified test file (which 
must be inside our current package.
+     * Gets an appropriate InputStream for the specified test file (which must 
be inside our current package.
      *
      * @param caller is always "this" for the calling object.
      * @param name is the test file we want
diff --git 
a/commons-digester3-examples/rss/src/main/java/org/apache/commons/digester3/rss/Channel.java
 
b/commons-digester3-examples/rss/src/main/java/org/apache/commons/digester3/rss/Channel.java
index 05bea2da..e59ec2ac 100644
--- 
a/commons-digester3-examples/rss/src/main/java/org/apache/commons/digester3/rss/Channel.java
+++ 
b/commons-digester3-examples/rss/src/main/java/org/apache/commons/digester3/rss/Channel.java
@@ -168,7 +168,7 @@ public class Channel
     }
 
     /**
-     * Return the items for this channel.
+     * Gets the items for this channel.
      */
     public Item[] findItems()
     {
@@ -180,7 +180,7 @@ public class Channel
     }
 
     /**
-     * Return the skip days for this channel.
+     * Gets the skip days for this channel.
      */
     public String[] findSkipDays()
     {
@@ -192,7 +192,7 @@ public class Channel
     }
 
     /**
-     * Return the skip hours for this channel.
+     * Gets the skip hours for this channel.
      */
     public String[] findSkipHours()
     {
@@ -224,7 +224,7 @@ public class Channel
     }
 
     /**
-     * Return the items for this channel.
+     * Gets the items for this channel.
      */
     public Item[] getItems()
     {
@@ -262,7 +262,7 @@ public class Channel
     }
 
     /**
-     * Return the skip days for this channel.
+     * Gets the skip days for this channel.
      */
     public String[] getSkipDays()
     {
@@ -270,7 +270,7 @@ public class Channel
     }
 
     /**
-     * Return the skip hours for this channel.
+     * Gets the skip hours for this channel.
      */
     public String[] getSkipHours()
     {

Reply via email to