Author: ebourg
Date: Mon May 13 20:59:11 2013
New Revision: 1482104
URL: http://svn.apache.org/r1482104
Log:
Replaced fully qualified class names in @link tags
Modified:
commons/proper/dbutils/branches/2_0/src/main/java/org/apache/commons/dbutils2/AsyncExecutor.java
commons/proper/dbutils/branches/2_0/src/main/java/org/apache/commons/dbutils2/QueryRunner.java
Modified:
commons/proper/dbutils/branches/2_0/src/main/java/org/apache/commons/dbutils2/AsyncExecutor.java
URL:
http://svn.apache.org/viewvc/commons/proper/dbutils/branches/2_0/src/main/java/org/apache/commons/dbutils2/AsyncExecutor.java?rev=1482104&r1=1482103&r2=1482104&view=diff
==============================================================================
---
commons/proper/dbutils/branches/2_0/src/main/java/org/apache/commons/dbutils2/AsyncExecutor.java
(original)
+++
commons/proper/dbutils/branches/2_0/src/main/java/org/apache/commons/dbutils2/AsyncExecutor.java
Mon May 13 20:59:11 2013
@@ -40,7 +40,7 @@ public class AsyncExecutor {
}
/**
- * Execute a {@link org.apache.commons.dbutils2.BatchExecutor}.
+ * Execute a {@link BatchExecutor}.
*
* @param executor The executor for this SQL statement.
* @return A <code>Future</code> which returns the result of the batch
call.
@@ -58,7 +58,7 @@ public class AsyncExecutor {
}
/**
- * Execute a {@link org.apache.commons.dbutils2.QueryExecutor} given a
handler.
+ * Execute a {@link QueryExecutor} given a handler.
*
* @param <T> The type of object that the handler returns
* @param executor The executor for this SQL statement.
@@ -78,7 +78,7 @@ public class AsyncExecutor {
}
/**
- * Execute a {@link org.apache.commons.dbutils2.UpdateExecutor}.
+ * Execute an {@link UpdateExecutor}.
*
* @param executor The executor for this SQL statement.
* @return A <code>Future</code> which returns the result of the query
call.
@@ -96,7 +96,7 @@ public class AsyncExecutor {
}
/**
- * Execute a {@link org.apache.commons.dbutils2.InsertExecutor} given a
handler.
+ * Execute an {@link InsertExecutor} given a handler.
*
* @param <T> The type of object that the handler returns
* @param executor The executor for this SQL statement.
@@ -116,7 +116,7 @@ public class AsyncExecutor {
}
/**
- * Execute a {@link org.apache.commons.dbutils2.InsertExecutor} given a
handler.
+ * Execute an {@link InsertExecutor} given a handler.
*
* @param executor The executor for this SQL statement.
* @return A <code>Future</code> which returns the number of rows inserted.
Modified:
commons/proper/dbutils/branches/2_0/src/main/java/org/apache/commons/dbutils2/QueryRunner.java
URL:
http://svn.apache.org/viewvc/commons/proper/dbutils/branches/2_0/src/main/java/org/apache/commons/dbutils2/QueryRunner.java?rev=1482104&r1=1482103&r2=1482104&view=diff
==============================================================================
---
commons/proper/dbutils/branches/2_0/src/main/java/org/apache/commons/dbutils2/QueryRunner.java
(original)
+++
commons/proper/dbutils/branches/2_0/src/main/java/org/apache/commons/dbutils2/QueryRunner.java
Mon May 13 20:59:11 2013
@@ -94,7 +94,7 @@ public class QueryRunner {
}
/**
- * Creates an {@link org.apache.commons.dbutils2.BatchExecutor} for the
given SQL.
+ * Creates an {@link BatchExecutor} for the given SQL.
* <code>Connection</code> is retrieved from the <code>DataSource</code>
* set in the constructor. This <code>Connection</code> must be in
* auto-commit mode or the insert will not be saved. The
<code>Connection</code> is
@@ -102,7 +102,7 @@ public class QueryRunner {
*
* @param sql The SQL statement to execute.
*
- * @return An {@link org.apache.commons.dbutils2.BatchExecutor} for this
SQL statement.
+ * @return An {@link BatchExecutor} for this SQL statement.
* @throws SQLException If there are database or parameter errors.
*/
public BatchExecutor batch(String sql) throws SQLException {
@@ -110,13 +110,13 @@ public class QueryRunner {
}
/**
- * Creates an {@link org.apache.commons.dbutils2.BatchExecutor} for the
given SQL statement and connection.
+ * Creates an {@link BatchExecutor} for the given SQL statement and
connection.
* The connection is <b>NOT</b> closed after execution.
*
* @param conn The connection to use for the batch call.
* @param sql The SQL statement to execute.
*
- * @return An {@link org.apache.commons.dbutils2.BatchExecutor} for this
SQL statement.
+ * @return An {@link BatchExecutor} for this SQL statement.
* @throws SQLException If there are database or parameter errors.
*/
public BatchExecutor batch(Connection conn, String sql) throws
SQLException {
@@ -124,13 +124,13 @@ public class QueryRunner {
}
/**
- * Creates an {@link org.apache.commons.dbutils2.BatchExecutor} for the
given SQL statement and connection.
+ * Creates an {@link BatchExecutor} for the given SQL statement and
connection.
*
* @param conn The connection to use for the batch call.
* @param closeConn True if the connection should be closed, false
otherwise.
* @param sql The SQL statement to execute.
*
- * @return An {@link org.apache.commons.dbutils2.BatchExecutor} for this
SQL statement.
+ * @return An {@link BatchExecutor} for this SQL statement.
* @throws SQLException If there are database or parameter errors.
*/
public BatchExecutor batch(Connection conn, boolean closeConn, String sql)
throws SQLException {
@@ -149,7 +149,7 @@ public class QueryRunner {
}
/**
- * Creates an {@link org.apache.commons.dbutils2.QueryExecutor} for the
given SQL.
+ * Creates an {@link QueryExecutor} for the given SQL.
* <code>Connection</code> is retrieved from the <code>DataSource</code>
* set in the constructor. This <code>Connection</code> must be in
* auto-commit mode or the insert will not be saved. The
<code>Connection</code> is
@@ -157,7 +157,7 @@ public class QueryRunner {
*
* @param sql The SQL statement to execute.
*
- * @return An {@link org.apache.commons.dbutils2.QueryExecutor} for this
SQL statement.
+ * @return A {@link QueryExecutor} for this SQL statement.
* @throws SQLException If there are database or parameter errors.
*/
public QueryExecutor query(String sql) throws SQLException {
@@ -165,13 +165,13 @@ public class QueryRunner {
}
/**
- * Creates an {@link org.apache.commons.dbutils2.QueryExecutor} for the
given SQL statement and connection.
+ * Creates an {@link QueryExecutor} for the given SQL statement and
connection.
* The connection is <b>NOT</b> closed after execution.
*
* @param conn The connection to use for the update call.
* @param sql The SQL statement to execute.
*
- * @return An {@link org.apache.commons.dbutils2.QueryExecutor} for this
SQL statement.
+ * @return An {@link QueryExecutor} for this SQL statement.
* @throws SQLException If there are database or parameter errors.
*/
public QueryExecutor query(Connection conn, String sql) throws
SQLException {
@@ -179,13 +179,13 @@ public class QueryRunner {
}
/**
- * Creates an {@link org.apache.commons.dbutils2.QueryExecutor} for the
given SQL statement and connection.
+ * Creates an {@link QueryExecutor} for the given SQL statement and
connection.
*
* @param conn The connection to use for the query call.
* @param closeConn True if the connection should be closed, false
otherwise.
* @param sql The SQL statement to execute.
*
- * @return An {@link org.apache.commons.dbutils2.QueryExecutor} for this
SQL statement.
+ * @return An {@link QueryExecutor} for this SQL statement.
* @throws SQLException If there are database or parameter errors.
*/
public QueryExecutor query(Connection conn, boolean closeConn, String sql)
throws SQLException {
@@ -204,7 +204,7 @@ public class QueryRunner {
}
/**
- * Creates an {@link org.apache.commons.dbutils2.UpdateExecutor} for the
given SQL.
+ * Creates an {@link UpdateExecutor} for the given SQL.
* <code>Connection</code> is retrieved from the <code>DataSource</code>
* set in the constructor. This <code>Connection</code> must be in
* auto-commit mode or the insert will not be saved. The
<code>Connection</code> is
@@ -212,7 +212,7 @@ public class QueryRunner {
*
* @param sql The SQL statement to execute.
*
- * @return An {@link org.apache.commons.dbutils2.UpdateExecutor} for this
SQL statement.
+ * @return An {@link UpdateExecutor} for this SQL statement.
* @throws SQLException if a database access error occurs
*/
public UpdateExecutor update(String sql) throws SQLException {
@@ -220,13 +220,13 @@ public class QueryRunner {
}
/**
- * Creates an {@link org.apache.commons.dbutils2.UpdateExecutor} for the
given SQL statement and connection.
+ * Creates an {@link UpdateExecutor} for the given SQL statement and
connection.
* The connection is <b>NOT</b> closed after execution.
*
* @param conn The connection to use for the update call.
* @param sql The SQL statement to execute.
*
- * @return An {@link org.apache.commons.dbutils2.UpdateExecutor} for this
SQL statement.
+ * @return An {@link UpdateExecutor} for this SQL statement.
* @throws SQLException If there are database or parameter errors.
*/
public UpdateExecutor update(Connection conn, String sql) throws
SQLException {
@@ -234,13 +234,13 @@ public class QueryRunner {
}
/**
- * Creates an {@link org.apache.commons.dbutils2.UpdateExecutor} for the
given SQL statement and connection.
+ * Creates an {@link UpdateExecutor} for the given SQL statement and
connection.
*
* @param conn The connection to use for the update call.
* @param closeConn True if the connection should be closed, false
otherwise.
* @param sql The SQL statement to execute.
*
- * @return An {@link org.apache.commons.dbutils2.UpdateExecutor} for this
SQL statement.
+ * @return An {@link UpdateExecutor} for this SQL statement.
* @throws SQLException If there are database or parameter errors.
*/
public UpdateExecutor update(Connection conn, boolean closeConn, String
sql) throws SQLException {
@@ -259,7 +259,7 @@ public class QueryRunner {
}
/**
- * Creates an {@link org.apache.commons.dbutils2.InsertExecutor} for the
given SQL.
+ * Creates an {@link InsertExecutor} for the given SQL.
* <code>Connection</code> is retrieved from the <code>DataSource</code>
* set in the constructor. This <code>Connection</code> must be in
* auto-commit mode or the insert will not be saved. The
<code>Connection</code> is
@@ -267,7 +267,7 @@ public class QueryRunner {
*
* @param sql The SQL statement to execute.
*
- * @return An {@link org.apache.commons.dbutils2.InsertExecutor} for this
SQL statement.
+ * @return An {@link InsertExecutor} for this SQL statement.
* @throws SQLException If there are database or parameter errors.
*/
public InsertExecutor insert(String sql) throws SQLException {
@@ -275,13 +275,13 @@ public class QueryRunner {
}
/**
- * Creates an {@link org.apache.commons.dbutils2.InsertExecutor} for the
given SQL and connection
+ * Creates an {@link InsertExecutor} for the given SQL and connection
* The connection is <b>NOT</b> closed after execution.
*
* @param conn The connection to use for the query call.
* @param sql The SQL statement to execute.
*
- * @return An {@link org.apache.commons.dbutils2.InsertExecutor} for this
SQL statement.
+ * @return An {@link InsertExecutor} for this SQL statement.
* @throws SQLException If there are database or parameter errors.
*/
public InsertExecutor insert(Connection conn, String sql) throws
SQLException {
@@ -289,13 +289,13 @@ public class QueryRunner {
}
/**
- * Creates an {@link org.apache.commons.dbutils2.InsertExecutor} for the
given SQL and connection.
+ * Creates an {@link InsertExecutor} for the given SQL and connection.
*
* @param conn The connection to use for the insert call.
* @param closeConn True if the connection should be closed, false
otherwise.
* @param sql The SQL statement to execute.
*
- * @return An {@link org.apache.commons.dbutils2.InsertExecutor} for this
SQL statement.
+ * @return An {@link InsertExecutor} for this SQL statement.
* @throws SQLException If there are database or parameter errors.
*/
public InsertExecutor insert(Connection conn, boolean closeConn, String
sql) throws SQLException {