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 2007/04/15 15:54:11 UTC

svn commit: r528978 - /db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/execute/MultiProbeTableScanResultSet.java

Author: kahatlen
Date: Sun Apr 15 06:54:10 2007
New Revision: 528978

URL: http://svn.apache.org/viewvc?view=rev&rev=528978
Log:
Turned some ordinary comments into javadoc comments.

Modified:
    db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/execute/MultiProbeTableScanResultSet.java

Modified: db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/execute/MultiProbeTableScanResultSet.java
URL: http://svn.apache.org/viewvc/db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/execute/MultiProbeTableScanResultSet.java?view=diff&rev=528978&r1=528977&r2=528978
==============================================================================
--- db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/execute/MultiProbeTableScanResultSet.java (original)
+++ db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/execute/MultiProbeTableScanResultSet.java Sun Apr 15 06:54:10 2007
@@ -65,7 +65,7 @@
 class MultiProbeTableScanResultSet extends TableScanResultSet
     implements CursorResultSet
 {
-    /* The values with which we will probe the table. */
+    /** The values with which we will probe the table. */
     protected DataValueDescriptor [] probeValues;
     /**
      * The values with which we will probe the table, as they were passed to
@@ -74,12 +74,14 @@
      */
     protected DataValueDescriptor [] origProbeValues;
 
-    /* 0-based position of the *next* value to lookup w.r.t. the probe
+    /**
+     * 0-based position of the <b>next</b> value to lookup w.r.t. the probe
      * values list.
      */
     protected int probeValIndex;
 
-    /* Whether or not we need to sort the values.  If all values were
+    /**
+     * Whether or not we need to sort the values.  If all values were
      * specified as literals (as opposed to parameters) then we did the
      * sort at compile time and so we do not need to do it here.
      */