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-proxy.git


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

commit 510db5c8f2c3926ac02cf7324efa7483ee599cff
Author: Gary Gregory <[email protected]>
AuthorDate: Sat Jul 11 09:00:13 2026 -0400

    Javadoc
---
 core/src/main/java/org/apache/commons/proxy2/Invocation.java      | 8 ++++----
 core/src/main/java/org/apache/commons/proxy2/Invoker.java         | 2 +-
 core/src/main/java/org/apache/commons/proxy2/ObjectProvider.java  | 2 +-
 core/src/main/java/org/apache/commons/proxy2/ProxyUtils.java      | 6 +++---
 .../commons/proxy2/impl/AbstractSubclassingProxyFactory.java      | 2 +-
 .../main/java/org/apache/commons/proxy2/impl/ProxyClassCache.java | 2 +-
 .../java/org/apache/commons/proxy2/impl/ProxyClassGenerator.java  | 2 +-
 .../commons/proxy2/invoker/recorder/InvocationRecorder.java       | 4 ++--
 .../java/org/apache/commons/proxy2/javassist/JavassistUtils.java  | 8 ++++----
 9 files changed, 18 insertions(+), 18 deletions(-)

diff --git a/core/src/main/java/org/apache/commons/proxy2/Invocation.java 
b/core/src/main/java/org/apache/commons/proxy2/Invocation.java
index 1c85f63..d2ecf5f 100644
--- a/core/src/main/java/org/apache/commons/proxy2/Invocation.java
+++ b/core/src/main/java/org/apache/commons/proxy2/Invocation.java
@@ -34,28 +34,28 @@ public interface Invocation
      * Returns the arguments being passed to this method invocation. Changes 
in the elements of this array will be
      * propagated to the recipient of this invocation.
      * 
-     * @return the arguments being passed to this method invocation
+     * @return The arguments being passed to this method invocation
      */
     Object[] getArguments();
 
     /**
      * Returns the method being called.
      * 
-     * @return the method being called
+     * @return The method being called
      */
     Method getMethod();
 
     /**
      * Returns the proxy object on which this invocation was invoked.
      * 
-     * @return the proxy object on which this invocation was invoked
+     * @return The proxy object on which this invocation was invoked
      */
     Object getProxy();
 
     /**
      * Called in order to let the invocation proceed.
      * 
-     * @return the return value of the invocation
+     * @return The return value of the invocation
      * @throws Throwable
      *             any exception or error that was thrown as a result of this 
invocation
      */
diff --git a/core/src/main/java/org/apache/commons/proxy2/Invoker.java 
b/core/src/main/java/org/apache/commons/proxy2/Invoker.java
index acc91b0..bb8fc87 100644
--- a/core/src/main/java/org/apache/commons/proxy2/Invoker.java
+++ b/core/src/main/java/org/apache/commons/proxy2/Invoker.java
@@ -41,7 +41,7 @@ public interface Invoker extends Serializable
      *            the method being invoked
      * @param arguments
      *            the arguments
-     * @return the return value
+     * @return The return value
      * @throws Throwable
      *             thrown by the implementation
      */
diff --git a/core/src/main/java/org/apache/commons/proxy2/ObjectProvider.java 
b/core/src/main/java/org/apache/commons/proxy2/ObjectProvider.java
index 5f2d7d8..6fec60d 100644
--- a/core/src/main/java/org/apache/commons/proxy2/ObjectProvider.java
+++ b/core/src/main/java/org/apache/commons/proxy2/ObjectProvider.java
@@ -35,7 +35,7 @@ public interface ObjectProvider<T> extends Serializable
      * {@link org.apache.commons.proxy2.exception.ObjectProviderException} if 
any problems arise while
      * constructing/finding the object.
      * 
-     * @return the object on which the method should be called
+     * @return The object on which the method should be called
      */
     T getObject();
 }
diff --git a/core/src/main/java/org/apache/commons/proxy2/ProxyUtils.java 
b/core/src/main/java/org/apache/commons/proxy2/ProxyUtils.java
index 4d3d71c..e5e34b5 100644
--- a/core/src/main/java/org/apache/commons/proxy2/ProxyUtils.java
+++ b/core/src/main/java/org/apache/commons/proxy2/ProxyUtils.java
@@ -108,7 +108,7 @@ public final class ProxyUtils
      * 
      * @param clazz
      *            the class
-     * @return the class' name as you would expect to see it in Java code
+     * @return The class' name as you would expect to see it in Java code
      */
     public static String getJavaClassName(Class<?> clazz)
     {
@@ -124,7 +124,7 @@ public final class ProxyUtils
      * 
      * @param primitiveType
      *            the primitive type
-     * @return the wrapper class
+     * @return The wrapper class
      */
     public static Class<?> getWrapperClass(Class<?> primitiveType)
     {
@@ -136,7 +136,7 @@ public final class ProxyUtils
      * 
      * @param type
      *            the type
-     * @return the null value
+     * @return The null value
      */
     public static <T> T nullValue(Class<T> type)
     {
diff --git 
a/core/src/main/java/org/apache/commons/proxy2/impl/AbstractSubclassingProxyFactory.java
 
b/core/src/main/java/org/apache/commons/proxy2/impl/AbstractSubclassingProxyFactory.java
index 3090393..21ff009 100644
--- 
a/core/src/main/java/org/apache/commons/proxy2/impl/AbstractSubclassingProxyFactory.java
+++ 
b/core/src/main/java/org/apache/commons/proxy2/impl/AbstractSubclassingProxyFactory.java
@@ -95,7 +95,7 @@ public abstract class AbstractSubclassingProxyFactory extends 
AbstractProxyFacto
      * 
      * @param proxyClasses
      *            the proxy classes
-     * @return the <code>proxyClasses</code> transformed into an array of only 
the interface classes
+     * @return The <code>proxyClasses</code> transformed into an array of only 
the interface classes
      */
     protected static Class<?>[] toInterfaces(Class<?>[] proxyClasses)
     {
diff --git 
a/core/src/main/java/org/apache/commons/proxy2/impl/ProxyClassCache.java 
b/core/src/main/java/org/apache/commons/proxy2/impl/ProxyClassCache.java
index fbc64c2..11ac46b 100644
--- a/core/src/main/java/org/apache/commons/proxy2/impl/ProxyClassCache.java
+++ b/core/src/main/java/org/apache/commons/proxy2/impl/ProxyClassCache.java
@@ -86,7 +86,7 @@ public class ProxyClassCache
      *            the classloader
      * @param proxyClasses
      *            the proxy classes
-     * @return the proxy class generated by the {@link ProxyClassGenerator} 
using the specified {@link ClassLoader} and
+     * @return The proxy class generated by the {@link ProxyClassGenerator} 
using the specified {@link ClassLoader} and
      *         array of proxy classes
      */
     public synchronized Class<?> getProxyClass(ClassLoader classLoader, 
Class<?>[] proxyClasses)
diff --git 
a/core/src/main/java/org/apache/commons/proxy2/impl/ProxyClassGenerator.java 
b/core/src/main/java/org/apache/commons/proxy2/impl/ProxyClassGenerator.java
index 7bdc7c0..6beeabd 100644
--- a/core/src/main/java/org/apache/commons/proxy2/impl/ProxyClassGenerator.java
+++ b/core/src/main/java/org/apache/commons/proxy2/impl/ProxyClassGenerator.java
@@ -38,7 +38,7 @@ public interface ProxyClassGenerator
      *            the classloader
      * @param proxyClasses
      *            the proxy classes
-     * @return the dynamically generated proxy class
+     * @return The dynamically generated proxy class
      */
     Class<?> generateProxyClass(ClassLoader classLoader, Class<?>... 
proxyClasses);
 }
diff --git 
a/core/src/main/java/org/apache/commons/proxy2/invoker/recorder/InvocationRecorder.java
 
b/core/src/main/java/org/apache/commons/proxy2/invoker/recorder/InvocationRecorder.java
index bf35cd9..36b5976 100644
--- 
a/core/src/main/java/org/apache/commons/proxy2/invoker/recorder/InvocationRecorder.java
+++ 
b/core/src/main/java/org/apache/commons/proxy2/invoker/recorder/InvocationRecorder.java
@@ -62,7 +62,7 @@ public class InvocationRecorder
      * 
      * @param <T>
      * @param type
-     * @return the generated proxy
+     * @return The generated proxy
      */
     public <T> T proxy(Class<T> type)
     {
@@ -75,7 +75,7 @@ public class InvocationRecorder
      * @param <T>
      * @param genericType
      * @param type
-     * @return the generated proxy
+     * @return The generated proxy
      */
     public <T> T proxy(Type genericType, Class<T> type)
     {
diff --git 
a/javassist/src/main/java/org/apache/commons/proxy2/javassist/JavassistUtils.java
 
b/javassist/src/main/java/org/apache/commons/proxy2/javassist/JavassistUtils.java
index e76485a..cc89aee 100644
--- 
a/javassist/src/main/java/org/apache/commons/proxy2/javassist/JavassistUtils.java
+++ 
b/javassist/src/main/java/org/apache/commons/proxy2/javassist/JavassistUtils.java
@@ -96,7 +96,7 @@ final class JavassistUtils
      * 
      * @param superclass
      *            the superclass
-     * @return the new derived {@link CtClass}
+     * @return The new derived {@link CtClass}
      */
     public static CtClass createClass(Class<?> superclass)
     {
@@ -110,7 +110,7 @@ final class JavassistUtils
      *            the base name
      * @param superclass
      *            the superclass
-     * @return the new derived {@link CtClass}
+     * @return The new derived {@link CtClass}
      */
     public static synchronized CtClass createClass(String baseName, Class<?> 
superclass)
     {
@@ -122,7 +122,7 @@ final class JavassistUtils
      * 
      * @param clazz
      *            the Java {@link Class}
-     * @return the {@link CtClass}
+     * @return The {@link CtClass}
      */
     public static CtClass resolve(Class<?> clazz)
     {
@@ -151,7 +151,7 @@ final class JavassistUtils
      * 
      * @param classes
      *            the Java {@link Class}es
-     * @return the corresponding {@link CtClass}es
+     * @return The corresponding {@link CtClass}es
      */
     public static CtClass[] resolve(Class<?>[] classes)
     {

Reply via email to