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 1f7843f3 Javadoc
1f7843f3 is described below
commit 1f7843f3c2759bc6781d853bfc23fb38c32c3924
Author: Gary Gregory <[email protected]>
AuthorDate: Thu Dec 14 09:46:01 2023 -0500
Javadoc
---
.../main/java/org/apache/commons/digester3/NodeCreateRule.java | 8 ++++----
.../java/org/apache/commons/digester3/plugins/Declaration.java | 4 ++--
.../commons/digester3/plugins/strategies/FinderFromMethod.java | 2 +-
.../commons/digester3/plugins/strategies/FinderFromResource.java | 2 +-
.../commons/digester3/plugins/strategies/LoaderFromClass.java | 4 ++--
5 files changed, 10 insertions(+), 10 deletions(-)
diff --git
a/commons-digester3-core/src/main/java/org/apache/commons/digester3/NodeCreateRule.java
b/commons-digester3-core/src/main/java/org/apache/commons/digester3/NodeCreateRule.java
index 30f8cd5b..7dc36c75 100644
---
a/commons-digester3-core/src/main/java/org/apache/commons/digester3/NodeCreateRule.java
+++
b/commons-digester3-core/src/main/java/org/apache/commons/digester3/NodeCreateRule.java
@@ -109,7 +109,7 @@ public class NodeCreateRule
protected StringBuilder topText = new StringBuilder();
/**
- * Constructor.
+ * Constructs a new instance.
* <p>
* Stores the content handler currently used by Digester so it can be
reset when done, and initializes the DOM
* objects needed to build the node.
@@ -323,7 +323,7 @@ public class NodeCreateRule
}
/**
- * Constructor. Creates an instance of this rule that will create a DOM
{@link org.w3c.dom.Element Element}, but
+ * Constructs a new instance. Creates an instance of this rule that will
create a DOM {@link org.w3c.dom.Element Element}, but
* lets you specify the JAXP {@code DocumentBuilder} that should be used
when constructing the node tree.
*
* @param documentBuilder the JAXP {@code DocumentBuilder} to use
@@ -336,7 +336,7 @@ public class NodeCreateRule
// ----------------------------------------------------- Instance Variables
/**
- * Constructor. Creates an instance of this rule that will create either a
DOM {@link org.w3c.dom.Element Element}
+ * Constructs a new instance. Creates an instance of this rule that will
create either a DOM {@link org.w3c.dom.Element Element}
* or a DOM {@link org.w3c.dom.DocumentFragment DocumentFragment},
depending on the value of the
* {@code nodeType} parameter.
*
@@ -353,7 +353,7 @@ public class NodeCreateRule
}
/**
- * Constructor. Creates an instance of this rule that will create either a
DOM {@link org.w3c.dom.Element Element}
+ * Constructs a new instance. Creates an instance of this rule that will
create either a DOM {@link org.w3c.dom.Element Element}
* or a DOM {@link org.w3c.dom.DocumentFragment DocumentFragment},
depending on the value of the
* {@code nodeType} parameter. This constructor lets you specify the JAXP
{@code DocumentBuilder} that
* should be used when constructing the node tree.
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 2601a2d4..e7604a1f 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
@@ -56,7 +56,7 @@ public class Declaration
// ---------------------- constructors ----------------------------------
/**
- * Constructor.
+ * Constructs a new instance.
*
* @param pluginClass The class of the object to be instantiated (will be
load in the init method)
*/
@@ -81,7 +81,7 @@ public class Declaration
}
/**
- * Constructor.
+ * Constructs a new instance.
*
* @param pluginClassName The name of the class of the object to be
instantiated (will be load in the init method)
*/
diff --git
a/commons-digester3-core/src/main/java/org/apache/commons/digester3/plugins/strategies/FinderFromMethod.java
b/commons-digester3-core/src/main/java/org/apache/commons/digester3/plugins/strategies/FinderFromMethod.java
index c0eab3c4..e6581600 100644
---
a/commons-digester3-core/src/main/java/org/apache/commons/digester3/plugins/strategies/FinderFromMethod.java
+++
b/commons-digester3-core/src/main/java/org/apache/commons/digester3/plugins/strategies/FinderFromMethod.java
@@ -45,7 +45,7 @@ public class FinderFromMethod
/** See {@link #findLoader}. */
private final String methodAttr;
- /** Constructor. */
+ /** Constructs a new instance. */
public FinderFromMethod()
{
this( DFLT_METHOD_ATTR );
diff --git
a/commons-digester3-core/src/main/java/org/apache/commons/digester3/plugins/strategies/FinderFromResource.java
b/commons-digester3-core/src/main/java/org/apache/commons/digester3/plugins/strategies/FinderFromResource.java
index 3af4a17d..be46ac37 100644
---
a/commons-digester3-core/src/main/java/org/apache/commons/digester3/plugins/strategies/FinderFromResource.java
+++
b/commons-digester3-core/src/main/java/org/apache/commons/digester3/plugins/strategies/FinderFromResource.java
@@ -83,7 +83,7 @@ public class FinderFromResource
/** See {@link #findLoader}. */
private final String resourceAttr;
- /** Constructor. */
+ /** Constructs a new instance. */
public FinderFromResource()
{
this( DFLT_RESOURCE_ATTR );
diff --git
a/commons-digester3-core/src/main/java/org/apache/commons/digester3/plugins/strategies/LoaderFromClass.java
b/commons-digester3-core/src/main/java/org/apache/commons/digester3/plugins/strategies/LoaderFromClass.java
index 68cd8c04..87fd2258 100644
---
a/commons-digester3-core/src/main/java/org/apache/commons/digester3/plugins/strategies/LoaderFromClass.java
+++
b/commons-digester3-core/src/main/java/org/apache/commons/digester3/plugins/strategies/LoaderFromClass.java
@@ -61,7 +61,7 @@ public class LoaderFromClass
private final Method rulesMethod;
/**
- * Constructor.
+ * Constructs a new instance.
*
* @param rulesClass The target class
* @param rulesMethod The method has to be invoked
@@ -73,7 +73,7 @@ public class LoaderFromClass
}
/**
- * Constructor.
+ * Constructs a new instance.
*
* @param rulesClass The target class
* @param methodName The method name has to be invoked