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 56ee149d Javadoc
56ee149d is described below

commit 56ee149d2e4403c54528fba343add8be15922d32
Author: Gary Gregory <garydgreg...@gmail.com>
AuthorDate: Sat Nov 11 16:13:41 2023 -0500

    Javadoc
---
 .../apache/commons/digester3/AbstractMethodRule.java |  6 +++---
 .../commons/digester3/BeanPropertySetterRule.java    |  4 ++--
 .../org/apache/commons/digester3/CallMethodRule.java | 16 ++++++++--------
 .../org/apache/commons/digester3/CallParamRule.java  |  6 +++---
 .../java/org/apache/commons/digester3/Digester.java  |  6 +++---
 .../apache/commons/digester3/FactoryCreateRule.java  | 20 ++++++++++----------
 .../apache/commons/digester3/ObjectCreateRule.java   |  8 ++++----
 .../apache/commons/digester3/ObjectParamRule.java    |  4 ++--
 .../apache/commons/digester3/PathCallParamRule.java  |  2 +-
 .../org/apache/commons/digester3/RegexRules.java     |  2 +-
 .../org/apache/commons/digester3/SetNextRule.java    |  6 +++---
 .../apache/commons/digester3/SetPropertyRule.java    |  2 +-
 .../org/apache/commons/digester3/SetRootRule.java    |  6 +++---
 .../org/apache/commons/digester3/SetTopRule.java     |  6 +++---
 .../digester3/binder/FactoryCreateBuilder.java       |  6 +++---
 .../commons/digester3/binder/LinkedRuleBuilder.java  |  6 +++---
 .../digester3/binder/ObjectCreateBuilder.java        |  4 ++--
 .../commons/digester3/plugins/PluginManager.java     |  4 ++--
 .../org/apache/commons/digester3/TestRuleSet.java    |  6 +++---
 19 files changed, 60 insertions(+), 60 deletions(-)

diff --git 
a/commons-digester3-core/src/main/java/org/apache/commons/digester3/AbstractMethodRule.java
 
b/commons-digester3-core/src/main/java/org/apache/commons/digester3/AbstractMethodRule.java
index 6e9b44be..94c651cd 100644
--- 
a/commons-digester3-core/src/main/java/org/apache/commons/digester3/AbstractMethodRule.java
+++ 
b/commons-digester3-core/src/main/java/org/apache/commons/digester3/AbstractMethodRule.java
@@ -62,7 +62,7 @@ public abstract class AbstractMethodRule
     protected boolean fireOnBegin;
 
     /**
-     * Construct a "set next" rule with the specified method name. The 
method's argument type is assumed to be the class
+     * Constructs a "set next" rule with the specified method name. The 
method's argument type is assumed to be the class
      * of the child object.
      *
      * @param methodName Method name of the parent method to call
@@ -73,7 +73,7 @@ public abstract class AbstractMethodRule
     }
 
     /**
-     * Construct a "set next" rule with the specified method name.
+     * Constructs a "set next" rule with the specified method name.
      *
      * @param methodName Method name of the parent method to call
      * @param paramType Java class of the parent method's argument (if you 
wish to use a primitive type, specify the
@@ -87,7 +87,7 @@ public abstract class AbstractMethodRule
     }
 
     /**
-     * Construct a "set next" rule with the specified method name.
+     * Constructs a "set next" rule with the specified method name.
      *
      * @param methodName Method name of the parent method to call
      * @param paramTypeName Java class of the parent method's argument (if you 
wish to use a primitive type, specify the
diff --git 
a/commons-digester3-core/src/main/java/org/apache/commons/digester3/BeanPropertySetterRule.java
 
b/commons-digester3-core/src/main/java/org/apache/commons/digester3/BeanPropertySetterRule.java
index cec63257..a76171a7 100644
--- 
a/commons-digester3-core/src/main/java/org/apache/commons/digester3/BeanPropertySetterRule.java
+++ 
b/commons-digester3-core/src/main/java/org/apache/commons/digester3/BeanPropertySetterRule.java
@@ -70,7 +70,7 @@ public class BeanPropertySetterRule
 
     /**
      * <p>
-     * Construct rule that automatically sets a property from the body text.
+     * Constructs rule that automatically sets a property from the body text.
      * <p>
      * This construct creates a rule that sets the property on the top object 
named the same as the current element.
      */
@@ -81,7 +81,7 @@ public class BeanPropertySetterRule
 
     /**
      * <p>
-     * Construct rule that sets the given property from the body text.
+     * Constructs rule that sets the given property from the body text.
      * </p>
      *
      * @param propertyName name of property to set
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 606f7083..49b5d2db 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
@@ -127,7 +127,7 @@ public class CallMethodRule
     private boolean useExactMatch;
 
     /**
-     * Construct a "call method" rule with the specified method name. The 
method should accept no parameters.
+     * Constructs a "call method" rule with the specified method name. The 
method should accept no parameters.
      *
      * @param targetOffset location of the target object. Positive numbers are 
relative to the top of the digester
      *            object stack. Negative numbers are relative to the bottom of 
the stack. Zero implies the top object on
@@ -142,7 +142,7 @@ public class CallMethodRule
     // ----------------------------------------------------- Instance Variables
 
     /**
-     * Construct a "call method" rule with the specified method name. The 
parameter types (if any) default to
+     * Constructs a "call method" rule with the specified method name. The 
parameter types (if any) default to
      * java.lang.String.
      *
      * @param targetOffset location of the target object. Positive numbers are 
relative to the top of the digester
@@ -169,7 +169,7 @@ public class CallMethodRule
     }
 
     /**
-     * Construct a "call method" rule with the specified method name and 
parameter types. If {@code paramCount} is
+     * Constructs a "call method" rule with the specified method name and 
parameter types. If {@code paramCount} is
      * set to zero the rule will use the body of this element as the single 
argument of the method, unless
      * {@code paramTypes} is null or empty, in this case the rule will call 
the specified method with no arguments.
      *
@@ -199,7 +199,7 @@ public class CallMethodRule
     }
 
     /**
-     * Construct a "call method" rule with the specified method name and 
parameter types. If {@code paramCount} is
+     * Constructs a "call method" rule with the specified method name and 
parameter types. If {@code paramCount} is
      * set to zero the rule will use the body of this element as the single 
argument of the method, unless
      * {@code paramTypes} is null or empty, in this case the rule will call 
the specified method with no arguments.
      *
@@ -231,7 +231,7 @@ public class CallMethodRule
     }
 
     /**
-     * Construct a "call method" rule with the specified method name. The 
method should accept no parameters.
+     * Constructs a "call method" rule with the specified method name. The 
method should accept no parameters.
      *
      * @param methodName Method name of the parent method to call
      */
@@ -241,7 +241,7 @@ public class CallMethodRule
     }
 
     /**
-     * Construct a "call method" rule with the specified method name. The 
parameter types (if any) default to
+     * Constructs a "call method" rule with the specified method name. The 
parameter types (if any) default to
      * java.lang.String.
      *
      * @param methodName Method name of the parent method to call
@@ -254,7 +254,7 @@ public class CallMethodRule
     }
 
     /**
-     * Construct a "call method" rule with the specified method name and 
parameter types. If {@code paramCount} is
+     * Constructs a "call method" rule with the specified method name and 
parameter types. If {@code paramCount} is
      * set to zero the rule will use the body of this element as the single 
argument of the method, unless
      * {@code paramTypes} is null or empty, in this case the rule will call 
the specified method with no arguments.
      *
@@ -270,7 +270,7 @@ public class CallMethodRule
     }
 
     /**
-     * Construct a "call method" rule with the specified method name and 
parameter types. If {@code paramCount} is
+     * Constructs a "call method" rule with the specified method name and 
parameter types. If {@code paramCount} is
      * set to zero the rule will use the body of this element as the single 
argument of the method, unless
      * {@code paramTypes} is null or empty, in this case the rule will call 
the specified method with no arguments.
      *
diff --git 
a/commons-digester3-core/src/main/java/org/apache/commons/digester3/CallParamRule.java
 
b/commons-digester3-core/src/main/java/org/apache/commons/digester3/CallParamRule.java
index b3f3b1fd..7fe087e2 100644
--- 
a/commons-digester3-core/src/main/java/org/apache/commons/digester3/CallParamRule.java
+++ 
b/commons-digester3-core/src/main/java/org/apache/commons/digester3/CallParamRule.java
@@ -72,7 +72,7 @@ public class CallParamRule
     protected Stack<String> bodyTextStack;
 
     /**
-     * Construct a "call parameter" rule that will save the body text of this 
element as the parameter value.
+     * Constructs a "call parameter" rule that will save the body text of this 
element as the parameter value.
      * <p>
      * Note that if the element is empty the an <i>empty string</i> is passed 
to the target method, not null. And if
      * automatic type conversion is being applied (ie if the target function 
takes something other than a string as a
@@ -87,7 +87,7 @@ public class CallParamRule
     }
 
     /**
-     * Construct a "call parameter" rule.
+     * Constructs a "call parameter" rule.
      *
      * @param paramIndex The zero-relative parameter number
      * @param fromStack should this parameter be taken from the top of the 
stack?
@@ -114,7 +114,7 @@ public class CallParamRule
     }
 
     /**
-     * Construct a "call parameter" rule that will save the value of the 
specified attribute as the parameter value.
+     * Constructs a "call parameter" rule that will save the value of the 
specified attribute as the parameter value.
      *
      * @param paramIndex The zero-relative parameter number
      * @param attributeName The name of the attribute to save
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 03a4e1cf..4b50b3e9 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
@@ -290,14 +290,14 @@ public class Digester
     protected List<InputSource> inputSources = new ArrayList<InputSource>( 5 );
 
     /**
-     * Construct a new Digester with default properties.
+     * Constructs a new Digester with default properties.
      */
     public Digester()
     {
     }
 
     /**
-     * Construct a new Digester, allowing a SAXParser to be passed in. This 
allows Digester to be used in environments
+     * Constructs a new Digester, allowing a SAXParser to be passed in. This 
allows Digester to be used in environments
      * which are unfriendly to JAXP1.1 (such as WebLogic 6.0). This may help 
in places where you are able to load JAXP
      * 1.1 classes yourself.
      *
@@ -311,7 +311,7 @@ public class Digester
     // ------------------------------------------------------------- Properties
 
     /**
-     * Construct a new Digester, allowing an XMLReader to be passed in. This 
allows Digester to be used in environments
+     * Constructs a new Digester, allowing an XMLReader to be passed in. This 
allows Digester to be used in environments
      * which are unfriendly to JAXP1.1 (such as WebLogic 6.0). Note that if 
you use this option you have to configure
      * namespace and validation support yourself, as these properties only 
affect the SAXParser and emtpy constructor.
      *
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 e00afb5f..4c4d3e15 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
@@ -68,7 +68,7 @@ public class FactoryCreateRule
 
     /**
      * <p>
-     * Construct a factory create rule that will use the specified class to 
create an {@link ObjectCreationFactory}
+     * Constructs a factory create rule that will use the specified class to 
create an {@link ObjectCreationFactory}
      * which will then be used to create an object and push it on the stack.
      * </p>
      * <p>
@@ -83,7 +83,7 @@ public class FactoryCreateRule
     }
 
     /**
-     * Construct a factory create rule that will use the specified class to 
create an {@link ObjectCreationFactory}
+     * Constructs a factory create rule that will use the specified class to 
create an {@link ObjectCreationFactory}
      * which will then be used to create an object and push it on the stack.
      *
      * @param clazz Java class name of the object creation factory class
@@ -96,7 +96,7 @@ public class FactoryCreateRule
 
     /**
      * <p>
-     * Construct a factory create rule that will use the specified class 
(possibly overridden by the specified attribute
+     * Constructs a factory create rule that will use the specified class 
(possibly overridden by the specified attribute
      * if present) to create an {@link ObjectCreationFactory}, which will then 
be used to instantiate an object instance
      * and push it onto the stack.
      * </p>
@@ -114,7 +114,7 @@ public class FactoryCreateRule
     }
 
     /**
-     * Construct a factory create rule that will use the specified class 
(possibly overridden by the specified attribute
+     * Constructs a factory create rule that will use the specified class 
(possibly overridden by the specified attribute
      * if present) to create an {@link ObjectCreationFactory}, which will then 
be used to instantiate an object instance
      * and push it onto the stack.
      *
@@ -131,7 +131,7 @@ public class FactoryCreateRule
 
     /**
      * <p>
-     * Construct a factory create rule using the given, already instantiated, 
{@link ObjectCreationFactory}.
+     * Constructs a factory create rule using the given, already instantiated, 
{@link ObjectCreationFactory}.
      * </p>
      * <p>
      * Exceptions thrown during the object creation process will be propagated.
@@ -145,7 +145,7 @@ public class FactoryCreateRule
     }
 
     /**
-     * Construct a factory create rule using the given, already instantiated, 
{@link ObjectCreationFactory}.
+     * Constructs a factory create rule using the given, already instantiated, 
{@link ObjectCreationFactory}.
      *
      * @param creationFactory called on to create the object.
      * @param ignoreCreateExceptions if true, exceptions thrown by the object 
creation factory will be ignored.
@@ -158,7 +158,7 @@ public class FactoryCreateRule
 
     /**
      * <p>
-     * Construct a factory create rule that will use the specified class name 
to create an {@link ObjectCreationFactory}
+     * Constructs a factory create rule that will use the specified class name 
to create an {@link ObjectCreationFactory}
      * which will then be used to create an object and push it on the stack.
      * </p>
      * <p>
@@ -175,7 +175,7 @@ public class FactoryCreateRule
     // ----------------------------------------------------- Instance Variables
 
     /**
-     * Construct a factory create rule that will use the specified class name 
to create an {@link ObjectCreationFactory}
+     * Constructs a factory create rule that will use the specified class name 
to create an {@link ObjectCreationFactory}
      * which will then be used to create an object and push it on the stack.
      *
      * @param className Java class name of the object creation factory class
@@ -188,7 +188,7 @@ public class FactoryCreateRule
 
     /**
      * <p>
-     * Construct a factory create rule that will use the specified class name 
(possibly overridden by the specified
+     * Constructs a factory create rule that will use the specified class name 
(possibly overridden by the specified
      * attribute if present) to create an {@link ObjectCreationFactory}, which 
will then be used to instantiate an
      * object instance and push it onto the stack.
      * </p>
@@ -206,7 +206,7 @@ public class FactoryCreateRule
     }
 
     /**
-     * Construct a factory create rule that will use the specified class name 
(possibly overridden by the specified
+     * Constructs a factory create rule that will use the specified class name 
(possibly overridden by the specified
      * attribute if present) to create an {@link ObjectCreationFactory}, which 
will then be used to instantiate an
      * object instance and push it onto the stack.
      *
diff --git 
a/commons-digester3-core/src/main/java/org/apache/commons/digester3/ObjectCreateRule.java
 
b/commons-digester3-core/src/main/java/org/apache/commons/digester3/ObjectCreateRule.java
index e3ff25ea..653f73c2 100644
--- 
a/commons-digester3-core/src/main/java/org/apache/commons/digester3/ObjectCreateRule.java
+++ 
b/commons-digester3-core/src/main/java/org/apache/commons/digester3/ObjectCreateRule.java
@@ -244,7 +244,7 @@ public class ObjectCreateRule
     private ProxyManager proxyManager;
 
     /**
-     * Construct an object create rule with the specified class.
+     * Constructs an object create rule with the specified class.
      *
      * @param clazz Java class name of the object to be created
      */
@@ -255,7 +255,7 @@ public class ObjectCreateRule
     }
 
     /**
-     * Construct an object create rule with the specified class name.
+     * Constructs an object create rule with the specified class name.
      *
      * @param className Java class name of the object to be created
      */
@@ -265,7 +265,7 @@ public class ObjectCreateRule
     }
 
     /**
-     * Construct an object create rule with the specified class and an 
optional attribute name containing an override.
+     * Constructs an object create rule with the specified class and an 
optional attribute name containing an override.
      *
      * @param attributeName Attribute name which, if present, contains an
      * @param clazz Java class name of the object to be created override of 
the class name to create
@@ -279,7 +279,7 @@ public class ObjectCreateRule
     // --------------------------------------------------------- Public Methods
 
     /**
-     * Construct an object create rule with the specified class name and an 
optional attribute name containing an
+     * Constructs an object create rule with the specified class name and an 
optional attribute name containing an
      * override.
      *
      * @param className Java class name of the object to be created
diff --git 
a/commons-digester3-core/src/main/java/org/apache/commons/digester3/ObjectParamRule.java
 
b/commons-digester3-core/src/main/java/org/apache/commons/digester3/ObjectParamRule.java
index c2ee1239..3951cb60 100644
--- 
a/commons-digester3-core/src/main/java/org/apache/commons/digester3/ObjectParamRule.java
+++ 
b/commons-digester3-core/src/main/java/org/apache/commons/digester3/ObjectParamRule.java
@@ -61,7 +61,7 @@ public class ObjectParamRule
 
     // ----------------------------------------------------------- Constructors
     /**
-     * Construct a "call parameter" rule that will save the given Object as 
the parameter value.
+     * Constructs a "call parameter" rule that will save the given Object as 
the parameter value.
      *
      * @param paramIndex The zero-relative parameter number
      * @param param the parameter to pass along
@@ -72,7 +72,7 @@ public class ObjectParamRule
     }
 
     /**
-     * Construct a "call parameter" rule that will save the given Object as 
the parameter value, provided that the
+     * Constructs a "call parameter" rule that will save the given Object as 
the parameter value, provided that the
      * specified attribute exists.
      *
      * @param paramIndex The zero-relative parameter number
diff --git 
a/commons-digester3-core/src/main/java/org/apache/commons/digester3/PathCallParamRule.java
 
b/commons-digester3-core/src/main/java/org/apache/commons/digester3/PathCallParamRule.java
index b17fac0d..aa95b268 100644
--- 
a/commons-digester3-core/src/main/java/org/apache/commons/digester3/PathCallParamRule.java
+++ 
b/commons-digester3-core/src/main/java/org/apache/commons/digester3/PathCallParamRule.java
@@ -46,7 +46,7 @@ public class PathCallParamRule
     // ----------------------------------------------------- Instance Variables
 
     /**
-     * Construct a "call parameter" rule that will save the body text of this 
element as the parameter value.
+     * Constructs a "call parameter" rule that will save the body text of this 
element as the parameter value.
      *
      * @param paramIndex The zero-relative parameter number
      */
diff --git 
a/commons-digester3-core/src/main/java/org/apache/commons/digester3/RegexRules.java
 
b/commons-digester3-core/src/main/java/org/apache/commons/digester3/RegexRules.java
index f808303a..50be3ed8 100644
--- 
a/commons-digester3-core/src/main/java/org/apache/commons/digester3/RegexRules.java
+++ 
b/commons-digester3-core/src/main/java/org/apache/commons/digester3/RegexRules.java
@@ -67,7 +67,7 @@ public class RegexRules
     // --------------------------------------------------------- Properties
 
     /**
-     * Construct sets the Regex matching strategy.
+     * Constructs sets the Regex matching strategy.
      *
      * @param matcher the regex strategy to be used, not null
      */
diff --git 
a/commons-digester3-core/src/main/java/org/apache/commons/digester3/SetNextRule.java
 
b/commons-digester3-core/src/main/java/org/apache/commons/digester3/SetNextRule.java
index adc6e3f1..0cd84200 100644
--- 
a/commons-digester3-core/src/main/java/org/apache/commons/digester3/SetNextRule.java
+++ 
b/commons-digester3-core/src/main/java/org/apache/commons/digester3/SetNextRule.java
@@ -43,7 +43,7 @@ public class SetNextRule
     // ----------------------------------------------------------- Constructors
 
     /**
-     * Construct a "set next" rule with the specified method name. The 
method's argument type is assumed to be the class
+     * Constructs a "set next" rule with the specified method name. The 
method's argument type is assumed to be the class
      * of the child object.
      *
      * @param methodName Method name of the parent method to call
@@ -54,7 +54,7 @@ public class SetNextRule
     }
 
     /**
-     * Construct a "set next" rule with the specified method name.
+     * Constructs a "set next" rule with the specified method name.
      *
      * @param methodName Method name of the parent method to call
      * @param paramType Java class of the parent method's argument (if you 
wish to use a primitive type, specify the
@@ -67,7 +67,7 @@ public class SetNextRule
     }
 
     /**
-     * Construct a "set next" rule with the specified method name.
+     * Constructs a "set next" rule with the specified method name.
      *
      * @param methodName Method name of the parent method to call
      * @param paramType Java class name of the parent method's argument (if 
you wish to use a primitive type,
diff --git 
a/commons-digester3-core/src/main/java/org/apache/commons/digester3/SetPropertyRule.java
 
b/commons-digester3-core/src/main/java/org/apache/commons/digester3/SetPropertyRule.java
index fe08630f..e14069c2 100644
--- 
a/commons-digester3-core/src/main/java/org/apache/commons/digester3/SetPropertyRule.java
+++ 
b/commons-digester3-core/src/main/java/org/apache/commons/digester3/SetPropertyRule.java
@@ -52,7 +52,7 @@ public class SetPropertyRule
     protected String value;
 
     /**
-     * Construct a "set property" rule with the specified name and value 
attributes.
+     * Constructs a "set property" rule with the specified name and value 
attributes.
      *
      * @param name Name of the attribute that will contain the name of the 
property to be set
      * @param value Name of the attribute that will contain the value to which 
the property should be set
diff --git 
a/commons-digester3-core/src/main/java/org/apache/commons/digester3/SetRootRule.java
 
b/commons-digester3-core/src/main/java/org/apache/commons/digester3/SetRootRule.java
index 77911382..4b9a6a21 100644
--- 
a/commons-digester3-core/src/main/java/org/apache/commons/digester3/SetRootRule.java
+++ 
b/commons-digester3-core/src/main/java/org/apache/commons/digester3/SetRootRule.java
@@ -37,7 +37,7 @@ public class SetRootRule
     // ----------------------------------------------------------- Constructors
 
     /**
-     * Construct a "set root" rule with the specified method name. The 
method's argument type is assumed to be the class
+     * Constructs a "set root" rule with the specified method name. The 
method's argument type is assumed to be the class
      * of the child object.
      *
      * @param methodName Method name of the parent method to call
@@ -48,7 +48,7 @@ public class SetRootRule
     }
 
     /**
-     * Construct a "set root" rule with the specified method name.
+     * Constructs a "set root" rule with the specified method name.
      *
      * @param methodName Method name of the parent method to call
      * @param paramType Java class of the parent method's argument (if you 
wish to use a primitive type, specify the
@@ -61,7 +61,7 @@ public class SetRootRule
     }
 
     /**
-     * Construct a "set root" rule with the specified method name.
+     * Constructs a "set root" rule with the specified method name.
      *
      * @param methodName Method name of the parent method to call
      * @param paramType Java class name of the parent method's argument (if 
you wish to use a primitive type,
diff --git 
a/commons-digester3-core/src/main/java/org/apache/commons/digester3/SetTopRule.java
 
b/commons-digester3-core/src/main/java/org/apache/commons/digester3/SetTopRule.java
index 962e7c7c..689b8aa2 100644
--- 
a/commons-digester3-core/src/main/java/org/apache/commons/digester3/SetTopRule.java
+++ 
b/commons-digester3-core/src/main/java/org/apache/commons/digester3/SetTopRule.java
@@ -37,7 +37,7 @@ public class SetTopRule
     // ----------------------------------------------------------- Constructors
 
     /**
-     * Construct a "set top" rule with the specified method name. The method's 
argument type is assumed to be the class
+     * Constructs a "set top" rule with the specified method name. The 
method's argument type is assumed to be the class
      * of the child object.
      *
      * @param methodName Method name of the parent method to call
@@ -48,7 +48,7 @@ public class SetTopRule
     }
 
     /**
-     * Construct a "set top" rule with the specified method name.
+     * Constructs a "set top" rule with the specified method name.
      *
      * @param methodName Method name of the parent method to call
      * @param paramType Java class of the parent method's argument (if you 
wish to use a primitive type, specify the
@@ -61,7 +61,7 @@ public class SetTopRule
     }
 
     /**
-     * Construct a "set top" rule with the specified method name.
+     * Constructs a "set top" rule with the specified method name.
      *
      * @param methodName Method name of the parent method to call
      * @param paramType Java class name of the parent method's argument (if 
you wish to use a primitive type,
diff --git 
a/commons-digester3-core/src/main/java/org/apache/commons/digester3/binder/FactoryCreateBuilder.java
 
b/commons-digester3-core/src/main/java/org/apache/commons/digester3/binder/FactoryCreateBuilder.java
index 863cdcc2..58b228bf 100644
--- 
a/commons-digester3-core/src/main/java/org/apache/commons/digester3/binder/FactoryCreateBuilder.java
+++ 
b/commons-digester3-core/src/main/java/org/apache/commons/digester3/binder/FactoryCreateBuilder.java
@@ -81,7 +81,7 @@ public final class FactoryCreateBuilder
     }
 
     /**
-     * Construct a factory create rule that will use the specified class to 
create an {@link ObjectCreationFactory}
+     * Constructs a factory create rule that will use the specified class to 
create an {@link ObjectCreationFactory}
      * which will then be used to create an object and push it on the stack.
      *
      * @param type Java class of the object creation factory class
@@ -101,7 +101,7 @@ public final class FactoryCreateBuilder
     }
 
     /**
-     * Construct a factory create rule that will use the specified class name 
to create an {@link ObjectCreationFactory}
+     * Constructs a factory create rule that will use the specified class name 
to create an {@link ObjectCreationFactory}
      * which will then be used to create an object and push it on the stack.
      *
      * @param className Java class name of the object creation factory class
@@ -147,7 +147,7 @@ public final class FactoryCreateBuilder
     }
 
     /**
-     * Construct a factory create rule using the given, already instantiated, 
{@link ObjectCreationFactory}.
+     * Constructs a factory create rule using the given, already instantiated, 
{@link ObjectCreationFactory}.
      *
      * @param <T> the type of created object by the given factory
      * @param creationFactory called on to create the object
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 d7534181..6f274d9d 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
@@ -132,7 +132,7 @@ public final class LinkedRuleBuilder
     }
 
     /**
-     * Construct a "call parameter" rule that will save the body text of this 
element as the parameter value.
+     * Constructs a "call parameter" rule that will save the body text of this 
element as the parameter value.
      *
      * @return a new {@link PathCallParamBuilder} instance.
      */
@@ -152,7 +152,7 @@ public final class LinkedRuleBuilder
     }
 
     /**
-     * Construct an object.
+     * Constructs an object.
      *
      * @return a new {@link ObjectCreateBuilder} instance.
      */
@@ -214,7 +214,7 @@ public final class LinkedRuleBuilder
     }
 
     /**
-     * Construct rule that automatically sets a property from the body text, 
taking the property
+     * Constructs rule that automatically sets a property from the body text, 
taking the property
      * name the same as the current element.
      *
      * @return a new {@link BeanPropertySetterBuilder} instance.
diff --git 
a/commons-digester3-core/src/main/java/org/apache/commons/digester3/binder/ObjectCreateBuilder.java
 
b/commons-digester3-core/src/main/java/org/apache/commons/digester3/binder/ObjectCreateBuilder.java
index a26ab73d..3ec7f28b 100644
--- 
a/commons-digester3-core/src/main/java/org/apache/commons/digester3/binder/ObjectCreateBuilder.java
+++ 
b/commons-digester3-core/src/main/java/org/apache/commons/digester3/binder/ObjectCreateBuilder.java
@@ -82,7 +82,7 @@ public final class ObjectCreateBuilder
     }
 
     /**
-     * Construct an object with the specified class.
+     * Constructs an object with the specified class.
      *
      * @param <T> any java type
      * @param type Java class of the object to be created
@@ -102,7 +102,7 @@ public final class ObjectCreateBuilder
     }
 
     /**
-     * Construct an object with the specified class name.
+     * Constructs an object with the specified class name.
      *
      * @param className Java class name of the object to be created
      * @return this builder instance
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 4572d840..59c2805b 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
@@ -55,7 +55,7 @@ public class PluginManager
     // ------------------- constructors ---------------------------------------
 
     /**
-     * Construct a "root" PluginManager, ie one with no parent.
+     * Constructs a "root" PluginManager, ie one with no parent.
      *
      * @param r The object containing data that should only exist once for 
each Digester instance.
      */
@@ -65,7 +65,7 @@ public class PluginManager
     }
 
     /**
-     * Construct a "child" PluginManager. When declarations are added to a 
"child", they are stored within the child and
+     * Constructs a "child" PluginManager. When declarations are added to a 
"child", they are stored within the child and
      * do not modify the parent, so when the child goes out of scope, those 
declarations disappear. When asking a
      * "child" to retrieve a declaration, it delegates the search to its 
parent if it does not hold a matching entry
      * itself.
diff --git 
a/commons-digester3-core/src/test/java/org/apache/commons/digester3/TestRuleSet.java
 
b/commons-digester3-core/src/test/java/org/apache/commons/digester3/TestRuleSet.java
index 38bc352d..47557487 100644
--- 
a/commons-digester3-core/src/test/java/org/apache/commons/digester3/TestRuleSet.java
+++ 
b/commons-digester3-core/src/test/java/org/apache/commons/digester3/TestRuleSet.java
@@ -34,7 +34,7 @@ public class TestRuleSet
     protected String prefix;
 
     /**
-     * Construct an instance of this RuleSet with default values.
+     * Constructs an instance of this RuleSet with default values.
      */
     public TestRuleSet()
     {
@@ -44,7 +44,7 @@ public class TestRuleSet
     }
 
     /**
-     * Construct an instance of this RuleSet associated with the specified 
prefix, associated with no namespace URI.
+     * Constructs an instance of this RuleSet associated with the specified 
prefix, associated with no namespace URI.
      *
      * @param prefix Matching pattern prefix (must end with '/') or null.
      */
@@ -58,7 +58,7 @@ public class TestRuleSet
     // ----------------------------------------------------- Instance Variables
 
     /**
-     * Construct an instance of this RuleSet associated with the specified 
prefix and namespace URI.
+     * Constructs an instance of this RuleSet associated with the specified 
prefix and namespace URI.
      *
      * @param prefix Matching pattern prefix (must end with '/') or null.
      * @param namespaceURI The namespace URI these rules belong to


Reply via email to