This is an automated email from the ASF dual-hosted git repository.

garydgregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-jxpath.git


The following commit(s) were added to refs/heads/master by this push:
     new f653fc30 Javadoc
f653fc30 is described below

commit f653fc30feb8e56208b33bd30e307c0083defb6f
Author: Gary Gregory <[email protected]>
AuthorDate: Sat Jul 11 09:08:55 2026 -0400

    Javadoc
---
 src/main/java/org/apache/commons/jxpath/ClassFunctions.java          | 4 ++--
 src/main/java/org/apache/commons/jxpath/FunctionLibrary.java         | 2 +-
 src/main/java/org/apache/commons/jxpath/JXPathContext.java           | 2 +-
 src/main/java/org/apache/commons/jxpath/PackageFunctions.java        | 2 +-
 src/main/java/org/apache/commons/jxpath/util/BasicTypeConverter.java | 2 +-
 5 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/src/main/java/org/apache/commons/jxpath/ClassFunctions.java 
b/src/main/java/org/apache/commons/jxpath/ClassFunctions.java
index 0d990005..0468a196 100644
--- a/src/main/java/org/apache/commons/jxpath/ClassFunctions.java
+++ b/src/main/java/org/apache/commons/jxpath/ClassFunctions.java
@@ -73,7 +73,7 @@ public class ClassFunctions implements Functions {
      * @param namespace  if it is not the namespace specified in the 
constructor, the method returns null
      * @param name       is a function name or "new" for a constructor.
      * @param parameters Object[] of parameters
-     * @return a MethodFunction, a ConstructorFunction or null if there is no 
such function.
+     * @return A MethodFunction, a ConstructorFunction or null if there is no 
such function.
      */
     @Override
     public Function getFunction(final String namespace, final String name, 
Object[] parameters) {
@@ -108,7 +108,7 @@ public class ClassFunctions implements Functions {
     /**
      * Returns a set of one namespace - the one specified in the constructor.
      *
-     * @return a singleton
+     * @return A singleton
      */
     @Override
     public Set<String> getUsedNamespaces() {
diff --git a/src/main/java/org/apache/commons/jxpath/FunctionLibrary.java 
b/src/main/java/org/apache/commons/jxpath/FunctionLibrary.java
index 27507ef0..c5f1e3b0 100644
--- a/src/main/java/org/apache/commons/jxpath/FunctionLibrary.java
+++ b/src/main/java/org/apache/commons/jxpath/FunctionLibrary.java
@@ -111,7 +111,7 @@ public class FunctionLibrary implements Functions {
     /**
      * Gets a set containing all namespaces used by the aggregated Functions.
      *
-     * @return a set containing all namespaces used by the aggregated 
Functions.
+     * @return A set containing all namespaces used by the aggregated 
Functions.
      */
     @Override
     public Set<String> getUsedNamespaces() {
diff --git a/src/main/java/org/apache/commons/jxpath/JXPathContext.java 
b/src/main/java/org/apache/commons/jxpath/JXPathContext.java
index e4c208fb..0571b4b6 100644
--- a/src/main/java/org/apache/commons/jxpath/JXPathContext.java
+++ b/src/main/java/org/apache/commons/jxpath/JXPathContext.java
@@ -830,7 +830,7 @@ public abstract class JXPathContext {
      * Finds all nodes that match the specified XPath.
      *
      * @param xpath the xpath to be evaluated
-     * @return a list of found objects
+     * @return A list of found objects
      */
     public List selectNodes(final String xpath) {
         final ArrayList list = new ArrayList();
diff --git a/src/main/java/org/apache/commons/jxpath/PackageFunctions.java 
b/src/main/java/org/apache/commons/jxpath/PackageFunctions.java
index baef23bd..fd0846bf 100644
--- a/src/main/java/org/apache/commons/jxpath/PackageFunctions.java
+++ b/src/main/java/org/apache/commons/jxpath/PackageFunctions.java
@@ -94,7 +94,7 @@ public class PackageFunctions implements Functions {
      *                   
<li><strong>subpackage.subpackage.Classname.methodname</strong>, if looking for 
a static method of a class in a subpackage</li>
      *                   </ul>
      * @param parameters Object[] of parameters
-     * @return a MethodFunction, a ConstructorFunction or null if no function 
is found
+     * @return A MethodFunction, a ConstructorFunction or null if no function 
is found
      */
     @Override
     public Function getFunction(final String namespace, final String name, 
Object[] parameters) {
diff --git 
a/src/main/java/org/apache/commons/jxpath/util/BasicTypeConverter.java 
b/src/main/java/org/apache/commons/jxpath/util/BasicTypeConverter.java
index 22dd05eb..835208fc 100644
--- a/src/main/java/org/apache/commons/jxpath/util/BasicTypeConverter.java
+++ b/src/main/java/org/apache/commons/jxpath/util/BasicTypeConverter.java
@@ -425,7 +425,7 @@ public class BasicTypeConverter implements TypeConverter {
      * Convert null to a primitive type.
      *
      * @param toType destination class
-     * @return a wrapper
+     * @return A wrapper
      */
     protected Object convertNullToPrimitive(final Class toType) {
         if (toType == boolean.class) {

Reply via email to