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

commit d8af3c8277b5f219139a1f943464ddb88ab77e6d
Author: Gary Gregory <[email protected]>
AuthorDate: Sun Oct 15 09:19:42 2023 -0400

    Fix Javadoc warnings: Nothing to inherit
---
 .../commons/dbutils/BaseResultSetHandler.java      | 380 ++++++++++-----------
 1 file changed, 190 insertions(+), 190 deletions(-)

diff --git a/src/main/java/org/apache/commons/dbutils/BaseResultSetHandler.java 
b/src/main/java/org/apache/commons/dbutils/BaseResultSetHandler.java
index 9ea790d..d5cf3db 100644
--- a/src/main/java/org/apache/commons/dbutils/BaseResultSetHandler.java
+++ b/src/main/java/org/apache/commons/dbutils/BaseResultSetHandler.java
@@ -59,63 +59,63 @@ public abstract class BaseResultSetHandler<T> implements 
ResultSetHandler<T> {
     private ResultSet resultSet;
 
     /**
-     * {@inheritDoc}
+     * 
      */
     protected final boolean absolute(final int row) throws SQLException {
         return resultSet.absolute(row);
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final void afterLast() throws SQLException {
         resultSet.afterLast();
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final void beforeFirst() throws SQLException {
         resultSet.beforeFirst();
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final void cancelRowUpdates() throws SQLException {
         resultSet.cancelRowUpdates();
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final void clearWarnings() throws SQLException {
         resultSet.clearWarnings();
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final void close() throws SQLException {
         resultSet.close();
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final void deleteRow() throws SQLException {
         resultSet.deleteRow();
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final int findColumn(final String columnLabel) throws 
SQLException {
         return resultSet.findColumn(columnLabel);
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final boolean first() throws SQLException {
         return resultSet.first();
@@ -126,42 +126,42 @@ public abstract class BaseResultSetHandler<T> implements 
ResultSetHandler<T> {
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final Array getArray(final int columnIndex) throws SQLException {
         return resultSet.getArray(columnIndex);
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final Array getArray(final String columnLabel) throws 
SQLException {
         return resultSet.getArray(columnLabel);
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final InputStream getAsciiStream(final int columnIndex) throws 
SQLException {
         return resultSet.getAsciiStream(columnIndex);
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final InputStream getAsciiStream(final String columnLabel) 
throws SQLException {
         return resultSet.getAsciiStream(columnLabel);
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final BigDecimal getBigDecimal(final int columnIndex) throws 
SQLException {
         return resultSet.getBigDecimal(columnIndex);
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     @Deprecated
     protected final BigDecimal getBigDecimal(final int columnIndex, final int 
scale) throws SQLException {
@@ -169,14 +169,14 @@ public abstract class BaseResultSetHandler<T> implements 
ResultSetHandler<T> {
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final BigDecimal getBigDecimal(final String columnLabel) throws 
SQLException {
         return resultSet.getBigDecimal(columnLabel);
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     @Deprecated
     protected final BigDecimal getBigDecimal(final String columnLabel, final 
int scale) throws SQLException {
@@ -184,448 +184,448 @@ public abstract class BaseResultSetHandler<T> 
implements ResultSetHandler<T> {
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final InputStream getBinaryStream(final int columnIndex) throws 
SQLException {
         return resultSet.getBinaryStream(columnIndex);
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final InputStream getBinaryStream(final String columnLabel) 
throws SQLException {
         return resultSet.getBinaryStream(columnLabel);
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final Blob getBlob(final int columnIndex) throws SQLException {
         return resultSet.getBlob(columnIndex);
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final Blob getBlob(final String columnLabel) throws SQLException 
{
         return resultSet.getBlob(columnLabel);
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final boolean getBoolean(final int columnIndex) throws 
SQLException {
         return resultSet.getBoolean(columnIndex);
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final boolean getBoolean(final String columnLabel) throws 
SQLException {
         return resultSet.getBoolean(columnLabel);
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final byte getByte(final int columnIndex) throws SQLException {
         return resultSet.getByte(columnIndex);
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final byte getByte(final String columnLabel) throws SQLException 
{
         return resultSet.getByte(columnLabel);
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final byte[] getBytes(final int columnIndex) throws SQLException 
{
         return resultSet.getBytes(columnIndex);
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final byte[] getBytes(final String columnLabel) throws 
SQLException {
         return resultSet.getBytes(columnLabel);
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final Reader getCharacterStream(final int columnIndex) throws 
SQLException {
         return resultSet.getCharacterStream(columnIndex);
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final Reader getCharacterStream(final String columnLabel) throws 
SQLException {
         return resultSet.getCharacterStream(columnLabel);
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final Clob getClob(final int columnIndex) throws SQLException {
         return resultSet.getClob(columnIndex);
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final Clob getClob(final String columnLabel) throws SQLException 
{
         return resultSet.getClob(columnLabel);
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final int getConcurrency() throws SQLException {
         return resultSet.getConcurrency();
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final String getCursorName() throws SQLException {
         return resultSet.getCursorName();
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final Date getDate(final int columnIndex) throws SQLException {
         return resultSet.getDate(columnIndex);
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final Date getDate(final int columnIndex, final Calendar cal) 
throws SQLException {
         return resultSet.getDate(columnIndex, cal);
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final Date getDate(final String columnLabel) throws SQLException 
{
         return resultSet.getDate(columnLabel);
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final Date getDate(final String columnLabel, final Calendar cal) 
throws SQLException {
         return resultSet.getDate(columnLabel, cal);
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final double getDouble(final int columnIndex) throws 
SQLException {
         return resultSet.getDouble(columnIndex);
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final double getDouble(final String columnLabel) throws 
SQLException {
         return resultSet.getDouble(columnLabel);
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final int getFetchDirection() throws SQLException {
         return resultSet.getFetchDirection();
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final int getFetchSize() throws SQLException {
         return resultSet.getFetchSize();
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final float getFloat(final int columnIndex) throws SQLException {
         return resultSet.getFloat(columnIndex);
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final float getFloat(final String columnLabel) throws 
SQLException {
         return resultSet.getFloat(columnLabel);
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final int getHoldability() throws SQLException {
         return resultSet.getHoldability();
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final int getInt(final int columnIndex) throws SQLException {
         return resultSet.getInt(columnIndex);
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final int getInt(final String columnLabel) throws SQLException {
         return resultSet.getInt(columnLabel);
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final long getLong(final int columnIndex) throws SQLException {
         return resultSet.getLong(columnIndex);
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final long getLong(final String columnLabel) throws SQLException 
{
         return resultSet.getLong(columnLabel);
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final ResultSetMetaData getMetaData() throws SQLException {
         return resultSet.getMetaData();
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final Reader getNCharacterStream(final int columnIndex) throws 
SQLException {
         return resultSet.getNCharacterStream(columnIndex);
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final Reader getNCharacterStream(final String columnLabel) 
throws SQLException {
         return resultSet.getNCharacterStream(columnLabel);
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final NClob getNClob(final int columnIndex) throws SQLException {
         return resultSet.getNClob(columnIndex);
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final NClob getNClob(final String columnLabel) throws 
SQLException {
         return resultSet.getNClob(columnLabel);
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final String getNString(final int columnIndex) throws 
SQLException {
         return resultSet.getNString(columnIndex);
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final String getNString(final String columnLabel) throws 
SQLException {
         return resultSet.getNString(columnLabel);
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final Object getObject(final int columnIndex) throws 
SQLException {
         return resultSet.getObject(columnIndex);
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final Object getObject(final int columnIndex, final Map<String, 
Class<?>> map) throws SQLException {
         return resultSet.getObject(columnIndex, map);
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final Object getObject(final String columnLabel) throws 
SQLException {
         return resultSet.getObject(columnLabel);
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final Object getObject(final String columnLabel, final 
Map<String, Class<?>> map) throws SQLException {
         return resultSet.getObject(columnLabel, map);
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final Ref getRef(final int columnIndex) throws SQLException {
         return resultSet.getRef(columnIndex);
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final Ref getRef(final String columnLabel) throws SQLException {
         return resultSet.getRef(columnLabel);
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final int getRow() throws SQLException {
         return resultSet.getRow();
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final RowId getRowId(final int columnIndex) throws SQLException {
         return resultSet.getRowId(columnIndex);
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final RowId getRowId(final String columnLabel) throws 
SQLException {
         return resultSet.getRowId(columnLabel);
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final short getShort(final int columnIndex) throws SQLException {
         return resultSet.getShort(columnIndex);
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final short getShort(final String columnLabel) throws 
SQLException {
         return resultSet.getShort(columnLabel);
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final SQLXML getSQLXML(final int columnIndex) throws 
SQLException {
         return resultSet.getSQLXML(columnIndex);
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final SQLXML getSQLXML(final String columnLabel) throws 
SQLException {
         return resultSet.getSQLXML(columnLabel);
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final Statement getStatement() throws SQLException {
         return resultSet.getStatement();
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final String getString(final int columnIndex) throws 
SQLException {
         return resultSet.getString(columnIndex);
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final String getString(final String columnLabel) throws 
SQLException {
         return resultSet.getString(columnLabel);
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final Time getTime(final int columnIndex) throws SQLException {
         return resultSet.getTime(columnIndex);
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final Time getTime(final int columnIndex, final Calendar cal) 
throws SQLException {
         return resultSet.getTime(columnIndex, cal);
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final Time getTime(final String columnLabel) throws SQLException 
{
         return resultSet.getTime(columnLabel);
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final Time getTime(final String columnLabel, final Calendar cal) 
throws SQLException {
         return resultSet.getTime(columnLabel, cal);
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final Timestamp getTimestamp(final int columnIndex) throws 
SQLException {
         return resultSet.getTimestamp(columnIndex);
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final Timestamp getTimestamp(final int columnIndex, final 
Calendar cal) throws SQLException {
         return resultSet.getTimestamp(columnIndex, cal);
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final Timestamp getTimestamp(final String columnLabel) throws 
SQLException {
         return resultSet.getTimestamp(columnLabel);
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final Timestamp getTimestamp(final String columnLabel, final 
Calendar cal) throws SQLException {
         return resultSet.getTimestamp(columnLabel, cal);
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final int getType() throws SQLException {
         return resultSet.getType();
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     @Deprecated
     protected final InputStream getUnicodeStream(final int columnIndex) throws 
SQLException {
@@ -633,7 +633,7 @@ public abstract class BaseResultSetHandler<T> implements 
ResultSetHandler<T> {
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     @Deprecated
     protected final InputStream getUnicodeStream(final String columnLabel) 
throws SQLException {
@@ -641,21 +641,21 @@ public abstract class BaseResultSetHandler<T> implements 
ResultSetHandler<T> {
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final URL getURL(final int columnIndex) throws SQLException {
         return resultSet.getURL(columnIndex);
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final URL getURL(final String columnLabel) throws SQLException {
         return resultSet.getURL(columnLabel);
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final SQLWarning getWarnings() throws SQLException {
         return resultSet.getWarnings();
@@ -671,7 +671,7 @@ public abstract class BaseResultSetHandler<T> implements 
ResultSetHandler<T> {
     protected abstract T handle() throws SQLException;
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     @Override
     public final T handle(final ResultSet rs) throws SQLException {
@@ -689,728 +689,728 @@ public abstract class BaseResultSetHandler<T> 
implements ResultSetHandler<T> {
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final void insertRow() throws SQLException {
         resultSet.insertRow();
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final boolean isAfterLast() throws SQLException {
         return resultSet.isAfterLast();
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final boolean isBeforeFirst() throws SQLException {
         return resultSet.isBeforeFirst();
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final boolean isClosed() throws SQLException {
         return resultSet.isClosed();
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final boolean isFirst() throws SQLException {
         return resultSet.isFirst();
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final boolean isLast() throws SQLException {
         return resultSet.isLast();
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final boolean isWrapperFor(final Class<?> iface) throws 
SQLException {
         return resultSet.isWrapperFor(iface);
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final boolean last() throws SQLException {
         return resultSet.last();
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final void moveToCurrentRow() throws SQLException {
         resultSet.moveToCurrentRow();
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final void moveToInsertRow() throws SQLException {
         resultSet.moveToInsertRow();
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final boolean next() throws SQLException {
         return resultSet.next();
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final boolean previous() throws SQLException {
         return resultSet.previous();
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final void refreshRow() throws SQLException {
         resultSet.refreshRow();
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final boolean relative(final int rows) throws SQLException {
         return resultSet.relative(rows);
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final boolean rowDeleted() throws SQLException {
         return resultSet.rowDeleted();
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final boolean rowInserted() throws SQLException {
         return resultSet.rowInserted();
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final boolean rowUpdated() throws SQLException {
         return resultSet.rowUpdated();
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final void setFetchDirection(final int direction) throws 
SQLException {
         resultSet.setFetchDirection(direction);
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final void setFetchSize(final int rows) throws SQLException {
         resultSet.setFetchSize(rows);
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final <E> E unwrap(final Class<E> iface) throws SQLException {
         return resultSet.unwrap(iface);
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final void updateArray(final int columnIndex, final Array x) 
throws SQLException {
         resultSet.updateArray(columnIndex, x);
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final void updateArray(final String columnLabel, final Array x) 
throws SQLException {
         resultSet.updateArray(columnLabel, x);
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final void updateAsciiStream(final int columnIndex, final 
InputStream x) throws SQLException {
         resultSet.updateAsciiStream(columnIndex, x);
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final void updateAsciiStream(final int columnIndex, final 
InputStream x, final int length) throws SQLException {
         resultSet.updateAsciiStream(columnIndex, x, length);
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final void updateAsciiStream(final int columnIndex, final 
InputStream x, final long length) throws SQLException {
         resultSet.updateAsciiStream(columnIndex, x, length);
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final void updateAsciiStream(final String columnLabel, final 
InputStream x) throws SQLException {
         resultSet.updateAsciiStream(columnLabel, x);
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final void updateAsciiStream(final String columnLabel, final 
InputStream x, final int length) throws SQLException {
         resultSet.updateAsciiStream(columnLabel, x, length);
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final void updateAsciiStream(final String columnLabel, final 
InputStream x, final long length) throws SQLException {
         resultSet.updateAsciiStream(columnLabel, x, length);
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final void updateBigDecimal(final int columnIndex, final 
BigDecimal x) throws SQLException {
         resultSet.updateBigDecimal(columnIndex, x);
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final void updateBigDecimal(final String columnLabel, final 
BigDecimal x) throws SQLException {
         resultSet.updateBigDecimal(columnLabel, x);
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final void updateBinaryStream(final int columnIndex, final 
InputStream x) throws SQLException {
         resultSet.updateBinaryStream(columnIndex, x);
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final void updateBinaryStream(final int columnIndex, final 
InputStream x, final int length) throws SQLException {
         resultSet.updateBinaryStream(columnIndex, x, length);
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final void updateBinaryStream(final int columnIndex, final 
InputStream x, final long length) throws SQLException {
         resultSet.updateBinaryStream(columnIndex, x, length);
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final void updateBinaryStream(final String columnLabel, final 
InputStream x) throws SQLException {
         resultSet.updateBinaryStream(columnLabel, x);
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final void updateBinaryStream(final String columnLabel, final 
InputStream x, final int length) throws SQLException {
         resultSet.updateBinaryStream(columnLabel, x, length);
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final void updateBinaryStream(final String columnLabel, final 
InputStream x, final long length) throws SQLException {
         resultSet.updateBinaryStream(columnLabel, x, length);
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final void updateBlob(final int columnIndex, final Blob x) 
throws SQLException {
         resultSet.updateBlob(columnIndex, x);
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final void updateBlob(final int columnIndex, final InputStream 
inputStream) throws SQLException {
         resultSet.updateBlob(columnIndex, inputStream);
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final void updateBlob(final int columnIndex, final InputStream 
inputStream, final long length) throws SQLException {
         resultSet.updateBlob(columnIndex, inputStream, length);
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final void updateBlob(final String columnLabel, final Blob x) 
throws SQLException {
         resultSet.updateBlob(columnLabel, x);
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final void updateBlob(final String columnLabel, final 
InputStream inputStream) throws SQLException {
         resultSet.updateBlob(columnLabel, inputStream);
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final void updateBlob(final String columnLabel, final 
InputStream inputStream, final long length) throws SQLException {
         resultSet.updateBlob(columnLabel, inputStream, length);
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final void updateBoolean(final int columnIndex, final boolean x) 
throws SQLException {
         resultSet.updateBoolean(columnIndex, x);
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final void updateBoolean(final String columnLabel, final boolean 
x) throws SQLException {
         resultSet.updateBoolean(columnLabel, x);
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final void updateByte(final int columnIndex, final byte x) 
throws SQLException {
         resultSet.updateByte(columnIndex, x);
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final void updateByte(final String columnLabel, final byte x) 
throws SQLException {
         resultSet.updateByte(columnLabel, x);
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final void updateBytes(final int columnIndex, final byte[] x) 
throws SQLException {
         resultSet.updateBytes(columnIndex, x);
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final void updateBytes(final String columnLabel, final byte[] x) 
throws SQLException {
         resultSet.updateBytes(columnLabel, x);
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final void updateCharacterStream(final int columnIndex, final 
Reader x) throws SQLException {
         resultSet.updateCharacterStream(columnIndex, x);
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final void updateCharacterStream(final int columnIndex, final 
Reader x, final int length) throws SQLException {
         resultSet.updateCharacterStream(columnIndex, x, length);
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final void updateCharacterStream(final int columnIndex, final 
Reader x, final long length) throws SQLException {
         resultSet.updateCharacterStream(columnIndex, x, length);
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final void updateCharacterStream(final String columnLabel, final 
Reader reader) throws SQLException {
         resultSet.updateCharacterStream(columnLabel, reader);
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final void updateCharacterStream(final String columnLabel, final 
Reader reader, final int length) throws SQLException {
         resultSet.updateCharacterStream(columnLabel, reader, length);
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final void updateCharacterStream(final String columnLabel, final 
Reader reader, final long length) throws SQLException {
         resultSet.updateCharacterStream(columnLabel, reader, length);
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final void updateClob(final int columnIndex, final Clob x) 
throws SQLException {
         resultSet.updateClob(columnIndex, x);
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final void updateClob(final int columnIndex, final Reader 
reader) throws SQLException {
         resultSet.updateClob(columnIndex, reader);
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final void updateClob(final int columnIndex, final Reader 
reader, final long length) throws SQLException {
         resultSet.updateClob(columnIndex, reader, length);
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final void updateClob(final String columnLabel, final Clob x) 
throws SQLException {
         resultSet.updateClob(columnLabel, x);
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final void updateClob(final String columnLabel, final Reader 
reader) throws SQLException {
         resultSet.updateClob(columnLabel, reader);
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final void updateClob(final String columnLabel, final Reader 
reader, final long length) throws SQLException {
         resultSet.updateClob(columnLabel, reader, length);
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final void updateDate(final int columnIndex, final Date x) 
throws SQLException {
         resultSet.updateDate(columnIndex, x);
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final void updateDate(final String columnLabel, final Date x) 
throws SQLException {
         resultSet.updateDate(columnLabel, x);
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final void updateDouble(final int columnIndex, final double x) 
throws SQLException {
         resultSet.updateDouble(columnIndex, x);
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final void updateDouble(final String columnLabel, final double 
x) throws SQLException {
         resultSet.updateDouble(columnLabel, x);
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final void updateFloat(final int columnIndex, final float x) 
throws SQLException {
         resultSet.updateFloat(columnIndex, x);
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final void updateFloat(final String columnLabel, final float x) 
throws SQLException {
         resultSet.updateFloat(columnLabel, x);
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final void updateInt(final int columnIndex, final int x) throws 
SQLException {
         resultSet.updateInt(columnIndex, x);
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final void updateInt(final String columnLabel, final int x) 
throws SQLException {
         resultSet.updateInt(columnLabel, x);
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final void updateLong(final int columnIndex, final long x) 
throws SQLException {
         resultSet.updateLong(columnIndex, x);
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final void updateLong(final String columnLabel, final long x) 
throws SQLException {
         resultSet.updateLong(columnLabel, x);
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final void updateNCharacterStream(final int columnIndex, final 
Reader x) throws SQLException {
         resultSet.updateNCharacterStream(columnIndex, x);
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final void updateNCharacterStream(final int columnIndex, final 
Reader x, final long length) throws SQLException {
         resultSet.updateNCharacterStream(columnIndex, x, length);
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final void updateNCharacterStream(final String columnLabel, 
final Reader reader) throws SQLException {
         resultSet.updateNCharacterStream(columnLabel, reader);
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final void updateNCharacterStream(final String columnLabel, 
final Reader reader, final long length) throws SQLException {
         resultSet.updateNCharacterStream(columnLabel, reader, length);
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final void updateNClob(final int columnIndex, final NClob nClob) 
throws SQLException {
         resultSet.updateNClob(columnIndex, nClob);
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final void updateNClob(final int columnIndex, final Reader 
reader) throws SQLException {
         resultSet.updateNClob(columnIndex, reader);
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final void updateNClob(final int columnIndex, final Reader 
reader, final long length) throws SQLException {
         resultSet.updateNClob(columnIndex, reader, length);
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final void updateNClob(final String columnLabel, final NClob 
nClob) throws SQLException {
         resultSet.updateNClob(columnLabel, nClob);
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final void updateNClob(final String columnLabel, final Reader 
reader) throws SQLException {
         resultSet.updateNClob(columnLabel, reader);
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final void updateNClob(final String columnLabel, final Reader 
reader, final long length) throws SQLException {
         resultSet.updateNClob(columnLabel, reader, length);
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final void updateNString(final int columnIndex, final String 
nString) throws SQLException {
         resultSet.updateNString(columnIndex, nString);
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final void updateNString(final String columnLabel, final String 
nString) throws SQLException {
         resultSet.updateNString(columnLabel, nString);
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final void updateNull(final int columnIndex) throws SQLException 
{
         resultSet.updateNull(columnIndex);
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final void updateNull(final String columnLabel) throws 
SQLException {
         resultSet.updateNull(columnLabel);
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final void updateObject(final int columnIndex, final Object x) 
throws SQLException {
         resultSet.updateObject(columnIndex, x);
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final void updateObject(final int columnIndex, final Object x, 
final int scaleOrLength) throws SQLException {
         resultSet.updateObject(columnIndex, x, scaleOrLength);
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final void updateObject(final String columnLabel, final Object 
x) throws SQLException {
         resultSet.updateObject(columnLabel, x);
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final void updateObject(final String columnLabel, final Object 
x, final int scaleOrLength) throws SQLException {
         resultSet.updateObject(columnLabel, x, scaleOrLength);
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final void updateRef(final int columnIndex, final Ref x) throws 
SQLException {
         resultSet.updateRef(columnIndex, x);
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final void updateRef(final String columnLabel, final Ref x) 
throws SQLException {
         resultSet.updateRef(columnLabel, x);
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final void updateRow() throws SQLException {
         resultSet.updateRow();
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final void updateRowId(final int columnIndex, final RowId x) 
throws SQLException {
         resultSet.updateRowId(columnIndex, x);
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final void updateRowId(final String columnLabel, final RowId x) 
throws SQLException {
         resultSet.updateRowId(columnLabel, x);
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final void updateShort(final int columnIndex, final short x) 
throws SQLException {
         resultSet.updateShort(columnIndex, x);
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final void updateShort(final String columnLabel, final short x) 
throws SQLException {
         resultSet.updateShort(columnLabel, x);
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final void updateSQLXML(final int columnIndex, final SQLXML 
xmlObject) throws SQLException {
         resultSet.updateSQLXML(columnIndex, xmlObject);
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final void updateSQLXML(final String columnLabel, final SQLXML 
xmlObject) throws SQLException {
         resultSet.updateSQLXML(columnLabel, xmlObject);
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final void updateString(final int columnIndex, final String x) 
throws SQLException {
         resultSet.updateString(columnIndex, x);
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final void updateString(final String columnLabel, final String 
x) throws SQLException {
         resultSet.updateString(columnLabel, x);
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final void updateTime(final int columnIndex, final Time x) 
throws SQLException {
         resultSet.updateTime(columnIndex, x);
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final void updateTime(final String columnLabel, final Time x) 
throws SQLException {
         resultSet.updateTime(columnLabel, x);
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final void updateTimestamp(final int columnIndex, final 
Timestamp x) throws SQLException {
         resultSet.updateTimestamp(columnIndex, x);
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final void updateTimestamp(final String columnLabel, final 
Timestamp x) throws SQLException {
         resultSet.updateTimestamp(columnLabel, x);
     }
 
     /**
-     * {@inheritDoc}
+     * TODO.
      */
     protected final boolean wasNull() throws SQLException {
         return resultSet.wasNull();


Reply via email to