You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2024/01/17 15:26:13 UTC

(commons-beanutils) branch master updated: Javadoc

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


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

commit 7ff16748d18c2e4fb723bf164b4db3841be94416
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Wed Jan 17 10:26:09 2024 -0500

    Javadoc
---
 .../org/apache/commons/beanutils2/sql/AbstractJdbcDynaClass.java    | 6 +++---
 .../java/org/apache/commons/beanutils2/sql/ResultSetDynaClass.java  | 2 +-
 .../java/org/apache/commons/beanutils2/sql/ResultSetIterator.java   | 4 ++--
 .../java/org/apache/commons/beanutils2/sql/RowSetDynaClass.java     | 2 +-
 4 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/src/main/java/org/apache/commons/beanutils2/sql/AbstractJdbcDynaClass.java b/src/main/java/org/apache/commons/beanutils2/sql/AbstractJdbcDynaClass.java
index cd9d628a..c0a6f1aa 100644
--- a/src/main/java/org/apache/commons/beanutils2/sql/AbstractJdbcDynaClass.java
+++ b/src/main/java/org/apache/commons/beanutils2/sql/AbstractJdbcDynaClass.java
@@ -142,7 +142,7 @@ abstract class AbstractJdbcDynaClass implements DynaClass, Serializable {
 
     /**
      * <p>
-     * Return an array of {@code PropertyDescriptor} for the properties currently defined in this DynaClass. If no properties are defined, a zero-length array
+     * Gets an array of {@code PropertyDescriptor} for the properties currently defined in this DynaClass. If no properties are defined, a zero-length array
      * will be returned.
      * </p>
      */
@@ -153,7 +153,7 @@ abstract class AbstractJdbcDynaClass implements DynaClass, Serializable {
 
     /**
      * <p>
-     * Return a property descriptor for the specified property, if it exists; otherwise, return {@code null}.
+     * Gets a property descriptor for the specified property, if it exists; otherwise, return {@code null}.
      * </p>
      *
      * @param name Name of the dynamic property for which a descriptor is requested
@@ -171,7 +171,7 @@ abstract class AbstractJdbcDynaClass implements DynaClass, Serializable {
 
     /**
      * <p>
-     * Return the name of this DynaClass (analogous to the {@code getName()</code> method of <code>java.lang.Class}, which allows the same {@code DynaClass}
+     * Gets the name of this DynaClass (analogous to the {@code getName()</code> method of <code>java.lang.Class}, which allows the same {@code DynaClass}
      * implementation class to support different dynamic classes, with different sets of properties.
      * </p>
      */
diff --git a/src/main/java/org/apache/commons/beanutils2/sql/ResultSetDynaClass.java b/src/main/java/org/apache/commons/beanutils2/sql/ResultSetDynaClass.java
index ac54c113..8914966b 100644
--- a/src/main/java/org/apache/commons/beanutils2/sql/ResultSetDynaClass.java
+++ b/src/main/java/org/apache/commons/beanutils2/sql/ResultSetDynaClass.java
@@ -167,7 +167,7 @@ public class ResultSetDynaClass extends AbstractJdbcDynaClass {
 
     /**
      * <p>
-     * Return the result set we are wrapping.
+     * Gets the result set we are wrapping.
      * </p>
      */
     ResultSet getResultSet() {
diff --git a/src/main/java/org/apache/commons/beanutils2/sql/ResultSetIterator.java b/src/main/java/org/apache/commons/beanutils2/sql/ResultSetIterator.java
index 1ca20945..29499c0f 100644
--- a/src/main/java/org/apache/commons/beanutils2/sql/ResultSetIterator.java
+++ b/src/main/java/org/apache/commons/beanutils2/sql/ResultSetIterator.java
@@ -163,7 +163,7 @@ public class ResultSetIterator implements DynaBean, Iterator<DynaBean> {
 
     /**
      * <p>
-     * Return {@code true} if the iteration has more elements.
+     * Gets {@code true} if the iteration has more elements.
      * </p>
      *
      * @return {@code true} if the result set has another row, otherwise {@code false}
@@ -180,7 +180,7 @@ public class ResultSetIterator implements DynaBean, Iterator<DynaBean> {
 
     /**
      * <p>
-     * Return the next element in the iteration.
+     * Gets the next element in the iteration.
      * </p>
      *
      * @return advance to the new row and return this
diff --git a/src/main/java/org/apache/commons/beanutils2/sql/RowSetDynaClass.java b/src/main/java/org/apache/commons/beanutils2/sql/RowSetDynaClass.java
index b6e7a789..23576e1d 100644
--- a/src/main/java/org/apache/commons/beanutils2/sql/RowSetDynaClass.java
+++ b/src/main/java/org/apache/commons/beanutils2/sql/RowSetDynaClass.java
@@ -247,7 +247,7 @@ public class RowSetDynaClass extends AbstractJdbcDynaClass {
 
     /**
      * <p>
-     * Return a {@code List} containing the {@link DynaBean}s that represent the contents of each {@code Row} from the {@code ResultSet} that was the basis of
+     * Gets a {@code List} containing the {@link DynaBean}s that represent the contents of each {@code Row} from the {@code ResultSet} that was the basis of
      * this {@link RowSetDynaClass} instance. These {@link DynaBean}s are disconnected from the database itself, so there is no problem with modifying the
      * contents of the list, or the values of the properties of these {@link DynaBean}s. However, it is the application's responsibility to persist any such
      * changes back to the database, if it so desires.