From derby-commits-return-6640-apmail-db-derby-commits-archive=db.apache.org@db.apache.org Thu Mar 08 23:23:13 2007 Return-Path: Delivered-To: apmail-db-derby-commits-archive@www.apache.org Received: (qmail 59486 invoked from network); 8 Mar 2007 23:23:12 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 8 Mar 2007 23:23:12 -0000 Received: (qmail 83705 invoked by uid 500); 8 Mar 2007 23:23:20 -0000 Delivered-To: apmail-db-derby-commits-archive@db.apache.org Received: (qmail 83685 invoked by uid 500); 8 Mar 2007 23:23:20 -0000 Mailing-List: contact derby-commits-help@db.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: List-Post: Reply-To: "Derby Development" List-Id: Delivered-To: mailing list derby-commits@db.apache.org Received: (qmail 83674 invoked by uid 99); 8 Mar 2007 23:23:20 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 08 Mar 2007 15:23:20 -0800 X-ASF-Spam-Status: No, hits=-99.5 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO eris.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 08 Mar 2007 15:23:11 -0800 Received: by eris.apache.org (Postfix, from userid 65534) id 1047C1A9842; Thu, 8 Mar 2007 15:22:51 -0800 (PST) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r516223 - in /db/derby/code/trunk/java: engine/org/apache/derby/impl/jdbc/ engine/org/apache/derby/impl/sql/catalog/ engine/org/apache/derby/impl/sql/compile/ testing/org/apache/derbyTesting/functionTests/tests/lang/ Date: Thu, 08 Mar 2007 23:22:49 -0000 To: derby-commits@db.apache.org From: abrown@apache.org X-Mailer: svnmailer-1.1.0 Message-Id: <20070308232251.1047C1A9842@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: abrown Date: Thu Mar 8 15:22:48 2007 New Revision: 516223 URL: http://svn.apache.org/viewvc?view=rev&rev=516223 Log: Javadoc cleanup from recent checkins... Modified: db/derby/code/trunk/java/engine/org/apache/derby/impl/jdbc/EmbedConnection.java db/derby/code/trunk/java/engine/org/apache/derby/impl/jdbc/LOBStoredProcedure.java db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/catalog/DataDictionaryImpl.java db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/ParameterNode.java db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/PredicateList.java db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/lang/ScrollCursors2Test.java Modified: db/derby/code/trunk/java/engine/org/apache/derby/impl/jdbc/EmbedConnection.java URL: http://svn.apache.org/viewvc/db/derby/code/trunk/java/engine/org/apache/derby/impl/jdbc/EmbedConnection.java?view=diff&rev=516223&r1=516222&r2=516223 ============================================================================== --- db/derby/code/trunk/java/engine/org/apache/derby/impl/jdbc/EmbedConnection.java (original) +++ db/derby/code/trunk/java/engine/org/apache/derby/impl/jdbc/EmbedConnection.java Thu Mar 8 15:22:48 2007 @@ -2105,7 +2105,7 @@ * Add the locator and the corresponding LOB object into the * HashMap * - * @param lobHashMap The object which contains the LOB object that + * @param LOBReference The object which contains the LOB object that * that is added to the HashMap. * @return an integer that represents the locator that has been * allocated to this LOB. Modified: db/derby/code/trunk/java/engine/org/apache/derby/impl/jdbc/LOBStoredProcedure.java URL: http://svn.apache.org/viewvc/db/derby/code/trunk/java/engine/org/apache/derby/impl/jdbc/LOBStoredProcedure.java?view=diff&rev=516223&r1=516222&r2=516223 ============================================================================== --- db/derby/code/trunk/java/engine/org/apache/derby/impl/jdbc/LOBStoredProcedure.java (original) +++ db/derby/code/trunk/java/engine/org/apache/derby/impl/jdbc/LOBStoredProcedure.java Thu Mar 8 15:22:48 2007 @@ -73,8 +73,8 @@ * @param searchLiteral a String whose occurence inside the Clob needs to * be found starting from pos. * - * @param pos an integer that represents the position inside the Clob from - * which the search needs to begin. + * @param fromPosition an integer that represents the position inside + * the Clob from which the search needs to begin. * * @return an integer that represents the position inside the Clob of the * first occurrence of the sub-string from the given starting @@ -99,8 +99,8 @@ * @param searchLocator a Locator representing a Clob whose occurence inside * the Clob needs to be found starting from pos. * - * @param pos an integer that represents the position inside the Clob from - * which the search needs to begin. + * @param fromPosition an integer that represents the position inside + * the Clob from which the search needs to begin. * * @return an integer that represents the position inside the Clob of the * first occurrence of the sub-string from the given starting @@ -129,8 +129,6 @@ /** * returns the String starting from pos and of len length * from the LOB corresponding to LOCATOR. - * @param LOCATOR_TYPE an integer that defines if the LOCATOR is - * a CLOB or a BLOB locator. * @param LOCATOR an integer that represents the LOCATOR used * to retrieve an instance of the LOB. * @param pos a long that represents the position from which @@ -314,7 +312,6 @@ * @param len the number of bytes that need to be used in replacement. * @param replaceBytes the byte array that contains the bytes that needs to * be used for replacement. - * @return the number of bytes that have been replaced. * @throws a SQLException. * */ Modified: db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/catalog/DataDictionaryImpl.java URL: http://svn.apache.org/viewvc/db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/catalog/DataDictionaryImpl.java?view=diff&rev=516223&r1=516222&r2=516223 ============================================================================== --- db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/catalog/DataDictionaryImpl.java (original) +++ db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/catalog/DataDictionaryImpl.java Thu Mar 8 15:22:48 2007 @@ -10046,7 +10046,7 @@ * database, or code doing hard upgrade from previous version. * * @param tc an instance of the TransactionController class. - * @param sysUtilUUID uuid of the SYSUTIL schema. + * @param schema_uuid uuid of the SYSUTIL schema. * * @throws StandardException Standard exception policy. **/ Modified: db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/ParameterNode.java URL: http://svn.apache.org/viewvc/db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/ParameterNode.java?view=diff&rev=516223&r1=516222&r2=516223 ============================================================================== --- db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/ParameterNode.java (original) +++ db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/ParameterNode.java Thu Mar 8 15:22:48 2007 @@ -521,7 +521,7 @@ * (in place of "this") at generation time. See the preprocess() * method of InListOperatorNode for more on how this is used. * - * @param The ValueNode to generate in place of this ParameterNode. + * @param vn The ValueNode to generate in place of this ParameterNode. */ protected void setValueToGenerate(ValueNode vn) { Modified: db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/PredicateList.java URL: http://svn.apache.org/viewvc/db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/PredicateList.java?view=diff&rev=516223&r1=516222&r2=516223 ============================================================================== --- db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/PredicateList.java (original) +++ db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/compile/PredicateList.java Thu Mar 8 15:22:48 2007 @@ -2834,7 +2834,7 @@ * IN-list probe predicate in this list. * * @param acb The ActivationClassBuilder for the class we're building - * @param exprFun The MethodBuilder for the method we're building + * @param mb The MethodBuilder for the method we're building */ protected void generateInListValues(ExpressionClassBuilder acb, MethodBuilder mb) throws StandardException Modified: db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/lang/ScrollCursors2Test.java URL: http://svn.apache.org/viewvc/db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/lang/ScrollCursors2Test.java?view=diff&rev=516223&r1=516222&r2=516223 ============================================================================== --- db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/lang/ScrollCursors2Test.java (original) +++ db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/lang/ScrollCursors2Test.java Thu Mar 8 15:22:48 2007 @@ -687,8 +687,6 @@ * @param fetchSize * The fetchSize value to use * - * @return Whether or not we were successful. - * * @exception SQLException * Thrown if some unexpected error happens */