Author: simonetripodi
Date: Wed Oct 12 14:39:30 2011
New Revision: 1182406
URL: http://svn.apache.org/viewvc?rev=1182406&view=rev
Log:
fixed checkstyle violations: Expected @param tag for 'executorService'.
Modified:
commons/proper/dbutils/trunk/src/main/java/org/apache/commons/dbutils/AsyncQueryRunner.java
Modified:
commons/proper/dbutils/trunk/src/main/java/org/apache/commons/dbutils/AsyncQueryRunner.java
URL:
http://svn.apache.org/viewvc/commons/proper/dbutils/trunk/src/main/java/org/apache/commons/dbutils/AsyncQueryRunner.java?rev=1182406&r1=1182405&r2=1182406&view=diff
==============================================================================
---
commons/proper/dbutils/trunk/src/main/java/org/apache/commons/dbutils/AsyncQueryRunner.java
(original)
+++
commons/proper/dbutils/trunk/src/main/java/org/apache/commons/dbutils/AsyncQueryRunner.java
Wed Oct 12 14:39:30 2011
@@ -39,6 +39,8 @@ public class AsyncQueryRunner extends Ab
/**
* Constructor for AsyncQueryRunner.
+ *
+ * @param executorService the {@code ExecutorService} instance used to run
JDBC invocations concurrently.
*/
public AsyncQueryRunner(ExecutorService executorService) {
this(null, false, executorService);
@@ -49,6 +51,7 @@ public class AsyncQueryRunner extends Ab
* @param pmdKnownBroken Oracle drivers don't support {@link
java.sql.ParameterMetaData#getParameterType(int) };
* if <code>pmdKnownBroken</code> is set to true, we won't even try it; if
false, we'll try it,
* and if it breaks, we'll remember not to use it again.
+ * @param executorService the {@code ExecutorService} instance used to run
JDBC invocations concurrently.
*/
public AsyncQueryRunner(boolean pmdKnownBroken, ExecutorService
executorService) {
this(null, pmdKnownBroken, executorService);
@@ -60,6 +63,7 @@ public class AsyncQueryRunner extends Ab
* <code>DataSource</code>.
*
* @param ds The <code>DataSource</code> to retrieve connections from.
+ * @param executorService the {@code ExecutorService} instance used to run
JDBC invocations concurrently.
*/
public AsyncQueryRunner(DataSource ds, ExecutorService executorService) {
this(ds, false, executorService);
@@ -74,6 +78,7 @@ public class AsyncQueryRunner extends Ab
* @param pmdKnownBroken Oracle drivers don't support {@link
java.sql.ParameterMetaData#getParameterType(int) };
* if <code>pmdKnownBroken</code> is set to true, we won't even try it; if
false, we'll try it,
* and if it breaks, we'll remember not to use it again.
+ * @param executorService the {@code ExecutorService} instance used to run
JDBC invocations concurrently.
*/
public AsyncQueryRunner(DataSource ds, boolean pmdKnownBroken,
ExecutorService executorService) {
super(ds, pmdKnownBroken);