You are viewing a plain text version of this content. The canonical link for it is here.
Posted to derby-commits@db.apache.org by ka...@apache.org on 2006/06/29 09:02:36 UTC

svn commit: r417953 - /db/derby/code/trunk/java/engine/org/apache/derby/iapi/jdbc/BrokeredCallableStatement40.java

Author: kahatlen
Date: Thu Jun 29 00:02:36 2006
New Revision: 417953

URL: http://svn.apache.org/viewvc?rev=417953&view=rev
Log:
DERBY-1463: Resolve javadoc warnings in BrokeredCallableStatement40

Patch submitted by V. Narayanan.

Modified:
    db/derby/code/trunk/java/engine/org/apache/derby/iapi/jdbc/BrokeredCallableStatement40.java

Modified: db/derby/code/trunk/java/engine/org/apache/derby/iapi/jdbc/BrokeredCallableStatement40.java
URL: http://svn.apache.org/viewvc/db/derby/code/trunk/java/engine/org/apache/derby/iapi/jdbc/BrokeredCallableStatement40.java?rev=417953&r1=417952&r2=417953&view=diff
==============================================================================
--- db/derby/code/trunk/java/engine/org/apache/derby/iapi/jdbc/BrokeredCallableStatement40.java (original)
+++ db/derby/code/trunk/java/engine/org/apache/derby/iapi/jdbc/BrokeredCallableStatement40.java Thu Jun 29 00:02:36 2006
@@ -277,7 +277,7 @@
      * Sets the designated parameter to the given input stream, which will have
      * the specified number of bytes.
      *
-     * @param parameterIndex the first parameter is 1, the second is 2, ...
+     * @param parameterName the name of the parameter 
      * @param x the java input stream which contains the ASCII parameter value
      * @param length the number of bytes in the stream
      * @exception SQLException thrown on failure.
@@ -293,7 +293,7 @@
      * Sets the designated parameter to the given input stream, which will have
      * the specified number of bytes.
      *
-     * @param parameterIndex the first parameter is 1, the second is 2, ...
+     * @param parameterName the name of the parameter
      * @param x the java input stream which contains the binary parameter value
      * @param length the number of bytes in the stream
      * @exception SQLException thrown on failure.
@@ -309,7 +309,7 @@
      * Sets the designated parameter to the given Reader, which will have
      * the specified number of bytes.
      *
-     * @param parameterIndex the first parameter is 1, the second is 2, ...
+     * @param parameterName the name of the parameter
      * @param x the java Reader which contains the UNICODE value
      * @param length the number of bytes in the stream
      * @exception SQLException thrown on failure.