You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by th...@apache.org on 2017/07/07 02:06:39 UTC

[17/58] [abbrv] commons-dbutils git commit: Javadoc errors

Javadoc errors

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/dbutils/branches/2_0@1457559 13f79535-47bb-0310-9956-ffa450edef68


Project: http://git-wip-us.apache.org/repos/asf/commons-dbutils/repo
Commit: http://git-wip-us.apache.org/repos/asf/commons-dbutils/commit/ac37a340
Tree: http://git-wip-us.apache.org/repos/asf/commons-dbutils/tree/ac37a340
Diff: http://git-wip-us.apache.org/repos/asf/commons-dbutils/diff/ac37a340

Branch: refs/heads/2_0
Commit: ac37a3406daa7366b8545ffacb786656fe3e631f
Parents: 9319b07
Author: Sebastian Bazley <se...@apache.org>
Authored: Sun Mar 17 20:46:46 2013 +0000
Committer: Sebastian Bazley <se...@apache.org>
Committed: Sun Mar 17 20:46:46 2013 +0000

----------------------------------------------------------------------
 src/main/java/org/apache/commons/dbutils2/BatchExecutor.java | 6 +++---
 src/main/java/org/apache/commons/dbutils2/QueryExecutor.java | 2 +-
 2 files changed, 4 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/commons-dbutils/blob/ac37a340/src/main/java/org/apache/commons/dbutils2/BatchExecutor.java
----------------------------------------------------------------------
diff --git a/src/main/java/org/apache/commons/dbutils2/BatchExecutor.java b/src/main/java/org/apache/commons/dbutils2/BatchExecutor.java
index 934c00b..64f1679 100644
--- a/src/main/java/org/apache/commons/dbutils2/BatchExecutor.java
+++ b/src/main/java/org/apache/commons/dbutils2/BatchExecutor.java
@@ -50,7 +50,7 @@ public class BatchExecutor extends AbstractExecutor<BatchExecutor> {
      * @param value the value to bind to the parameter.
      * @return this object.
      * @throws SQLException thrown if the statement number does not exist, or any other SQLException.
-     * @see org.apache.commons.dbutils.UpdateExecutor.bind(String, Object)
+     * @see org.apache.commons.dbutils2.UpdateExecutor#bind(String, Object)
      */
     @Override
     public BatchExecutor bind(final String name, final Object value) throws SQLException {
@@ -86,7 +86,7 @@ public class BatchExecutor extends AbstractExecutor<BatchExecutor> {
      * Adds the statement to the batch after binding all of the parameters.
      * @return this object.
      * @throws SQLException if a SQLException is thrown during the addBatch() call.
-     * @see java.sql.PreparedStatement.addBatch()
+     * @see java.sql.PreparedStatement#addBatch()
      */
     public BatchExecutor addBatch() throws SQLException {
         try {
@@ -103,7 +103,7 @@ public class BatchExecutor extends AbstractExecutor<BatchExecutor> {
      * Calls batch after checking the parameters to ensure nothing is null.
      * @return an array containing the number of rows updated for each statement.
      * @throws SQLException If there are database or parameter errors.
-     * @see org.apache.commons.dbutils.UpdateExecutor.update()
+     * @see org.apache.commons.dbutils2.UpdateExecutor#execute()
      */
     public int[] execute() throws SQLException {
         try {

http://git-wip-us.apache.org/repos/asf/commons-dbutils/blob/ac37a340/src/main/java/org/apache/commons/dbutils2/QueryExecutor.java
----------------------------------------------------------------------
diff --git a/src/main/java/org/apache/commons/dbutils2/QueryExecutor.java b/src/main/java/org/apache/commons/dbutils2/QueryExecutor.java
index de55919..11bd8aa 100644
--- a/src/main/java/org/apache/commons/dbutils2/QueryExecutor.java
+++ b/src/main/java/org/apache/commons/dbutils2/QueryExecutor.java
@@ -45,7 +45,7 @@ class QueryExecutor extends AbstractExecutor<QueryExecutor> {
     /**
      * Calls query after checking the parameters to ensure nothing is null.
      *
-     * @param rsh The handler that converts the results into an object.
+     * @param handler The handler that converts the results into an object.
      *
      * @return The results of the query.
      * @throws SQLException If there are database or parameter errors.