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 kr...@apache.org on 2008/02/04 15:27:30 UTC

svn commit: r618292 - in /db/derby/code/trunk/java: client/org/apache/derby/client/ engine/org/apache/derby/iapi/types/ engine/org/apache/derby/impl/jdbc/ testing/org/apache/derbyTesting/functionTests/tests/lang/ testing/org/apache/derbyTesting/junit/

Author: kristwaa
Date: Mon Feb  4 06:27:29 2008
New Revision: 618292

URL: http://svn.apache.org/viewvc?rev=618292&view=rev
Log:
Fixed some JavaDoc errors.

Modified:
    db/derby/code/trunk/java/client/org/apache/derby/client/ClientDataSourceFactory.java
    db/derby/code/trunk/java/engine/org/apache/derby/iapi/types/DataTypeDescriptor.java
    db/derby/code/trunk/java/engine/org/apache/derby/impl/jdbc/EmbedBlob.java
    db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/lang/ResultSetsFromPreparedStatementTest.java
    db/derby/code/trunk/java/testing/org/apache/derbyTesting/junit/JDBC.java

Modified: db/derby/code/trunk/java/client/org/apache/derby/client/ClientDataSourceFactory.java
URL: http://svn.apache.org/viewvc/db/derby/code/trunk/java/client/org/apache/derby/client/ClientDataSourceFactory.java?rev=618292&r1=618291&r2=618292&view=diff
==============================================================================
--- db/derby/code/trunk/java/client/org/apache/derby/client/ClientDataSourceFactory.java (original)
+++ db/derby/code/trunk/java/client/org/apache/derby/client/ClientDataSourceFactory.java Mon Feb  4 06:27:29 2008
@@ -43,7 +43,7 @@
  * getObjectInstance, which is called by a JNDI service provider to reconstruct an object when that object is retrieved
  * from JNDI. A JDBC driver vendor should provide an object factory as part of their JDBC 2.0 product.
  *
- * @see ClientDataSource
+ * @see org.apache.derby.jdbc.ClientDataSource
  */
 public class ClientDataSourceFactory implements javax.naming.spi.ObjectFactory {
 

Modified: db/derby/code/trunk/java/engine/org/apache/derby/iapi/types/DataTypeDescriptor.java
URL: http://svn.apache.org/viewvc/db/derby/code/trunk/java/engine/org/apache/derby/iapi/types/DataTypeDescriptor.java?rev=618292&r1=618291&r2=618292&view=diff
==============================================================================
--- db/derby/code/trunk/java/engine/org/apache/derby/iapi/types/DataTypeDescriptor.java (original)
+++ db/derby/code/trunk/java/engine/org/apache/derby/iapi/types/DataTypeDescriptor.java Mon Feb  4 06:27:29 2008
@@ -349,7 +349,7 @@
 	 * Get a catalog type that corresponds to a SQL Row Multiset
 	 *
 	 * @param columnNames   Names of the columns in the Row Muliset
-	 * @param types                 Types of the columns in the Row Muliset
+	 * @param catalogTypes  Types of the columns in the Row Muliset
 	 *
 	 * @return	A new DataTypeDescriptor describing the SQL Row Multiset
 	 */

Modified: db/derby/code/trunk/java/engine/org/apache/derby/impl/jdbc/EmbedBlob.java
URL: http://svn.apache.org/viewvc/db/derby/code/trunk/java/engine/org/apache/derby/impl/jdbc/EmbedBlob.java?rev=618292&r1=618291&r2=618292&view=diff
==============================================================================
--- db/derby/code/trunk/java/engine/org/apache/derby/impl/jdbc/EmbedBlob.java (original)
+++ db/derby/code/trunk/java/engine/org/apache/derby/impl/jdbc/EmbedBlob.java Mon Feb  4 06:27:29 2008
@@ -997,7 +997,7 @@
     /**
      * Return locator for this lob.
      * 
-     * @return
+     * @return The locator identifying this lob.
      */
     public int getLocator() {
         return locator;

Modified: db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/lang/ResultSetsFromPreparedStatementTest.java
URL: http://svn.apache.org/viewvc/db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/lang/ResultSetsFromPreparedStatementTest.java?rev=618292&r1=618291&r2=618292&view=diff
==============================================================================
--- db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/lang/ResultSetsFromPreparedStatementTest.java (original)
+++ db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/lang/ResultSetsFromPreparedStatementTest.java Mon Feb  4 06:27:29 2008
@@ -2057,11 +2057,11 @@
      * @param generatedType BY DEFAULT or ALWAYS
      * @throws Exception all errors passed on to JUnit
      */
-    private void testGeneratedIdentity(String dataType, String generateType) 
+    private void testGeneratedIdentity(String dataType, String generatedType) 
         throws Exception {
         Statement s = createStatement();
         s.execute("CREATE TABLE T(GI "+dataType+" PRIMARY KEY GENERATED "+
-                  generateType+
+                  generatedType+
                   " AS IDENTITY (START WITH 5, INCREMENT BY 10), "+
                   "L VARCHAR(8))");
         PreparedStatement implicit = 

Modified: db/derby/code/trunk/java/testing/org/apache/derbyTesting/junit/JDBC.java
URL: http://svn.apache.org/viewvc/db/derby/code/trunk/java/testing/org/apache/derbyTesting/junit/JDBC.java?rev=618292&r1=618291&r2=618292&view=diff
==============================================================================
--- db/derby/code/trunk/java/testing/org/apache/derbyTesting/junit/JDBC.java (original)
+++ db/derby/code/trunk/java/testing/org/apache/derbyTesting/junit/JDBC.java Mon Feb  4 06:27:29 2008
@@ -993,7 +993,7 @@
     /**
      * See assertRowInResultSet(...) above.
      *
-     * @param BitSet colsToCheck If non-null then for every bit b
+     * @param colsToCheck If non-null then for every bit b
      *   that is set in colsToCheck, we'll compare the (b+1)-th column
      *   of the received result set's current row to the i-th column
      *   of expectedRow, where 0 <= i < # bits set in colsToCheck.