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/12 14:52:47 UTC

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

Author: kahatlen
Date: Thu Apr 12 05:52:46 2007
New Revision: 527910

URL: http://svn.apache.org/viewvc?view=rev&rev=527910
Log:
Fixed javadoc warnings.

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

Modified: db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/execute/ScrollInsensitiveResultSet.java
URL: http://svn.apache.org/viewvc/db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/execute/ScrollInsensitiveResultSet.java?view=diff&rev=527910&r1=527909&r2=527910
==============================================================================
--- db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/execute/ScrollInsensitiveResultSet.java (original)
+++ db/derby/code/trunk/java/engine/org/apache/derby/impl/sql/execute/ScrollInsensitiveResultSet.java Thu Apr 12 05:52:46 2007
@@ -274,7 +274,7 @@
 	 * @return	The row at the absolute position, or NULL if no such position.
 	 *
 	 * @exception StandardException		Thrown on failure
-	 * @see Row
+	 * @see org.apache.derby.iapi.sql.Row
 	 */
 	public ExecRow	getAbsoluteRow(int row) throws StandardException
 	{
@@ -380,7 +380,7 @@
 	 * @return	The row at the relative position, or NULL if no such position.
 	 *
 	 * @exception StandardException		Thrown on failure
-	 * @see Row
+	 * @see org.apache.derby.iapi.sql.Row
 	 */
 	public ExecRow	getRelativeRow(int row) throws StandardException
 	{
@@ -430,7 +430,7 @@
 	 *
 	 * @return	NULL.
 	 *
-	 * @see Row
+	 * @see org.apache.derby.iapi.sql.Row
 	 */
 	public ExecRow	setBeforeFirstRow() 
 	{
@@ -448,7 +448,7 @@
 	 * @return	The first row, or NULL if no rows.
 	 *
 	 * @exception StandardException		Thrown on failure
-	 * @see Row
+	 * @see org.apache.derby.iapi.sql.Row
 	 */
 	public ExecRow	getFirstRow() 
 		throws StandardException
@@ -541,7 +541,7 @@
 	 * @return	The previous row, or NULL if no more previous rows.
 	 *
 	 * @exception StandardException		Thrown on failure
-	 * @see Row
+	 * @see org.apache.derby.iapi.sql.Row
 	 */
 	public ExecRow	getPreviousRow() 
 		throws StandardException
@@ -603,7 +603,7 @@
 	 * @return	The last row, or NULL if no rows.
 	 *
 	 * @exception StandardException		Thrown on failure
-	 * @see Row
+	 * @see org.apache.derby.iapi.sql.Row
 	 */
 	public ExecRow	getLastRow()
 		throws StandardException
@@ -660,7 +660,7 @@
 	 * @return	NULL.
 	 *
 	 * @exception StandardException		Thrown on failure
-	 * @see Row
+	 * @see org.apache.derby.iapi.sql.Row
 	 */
 	public ExecRow	setAfterLastRow() 
 		throws StandardException