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 ab...@apache.org on 2007/03/09 00:22:49 UTC

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/

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
      */