jdk/src/java.sql.rowset/share/classes/com/sun/rowset/CachedRowSetImpl.java
changeset 28059 e576535359cc
parent 25859 3317bb8137f4
child 30797 9cf3d0361db4
equal deleted inserted replaced
28058:87940c838900 28059:e576535359cc
   429      * <p>
   429      * <p>
   430      * In addition, the following properties can be associated with the
   430      * In addition, the following properties can be associated with the
   431      * provider to assist in determining the choice of the synchronizaton
   431      * provider to assist in determining the choice of the synchronizaton
   432      * provider such as:
   432      * provider such as:
   433      * <ul>
   433      * <ul>
   434      * <li><code>ROWSET_SYNC_PROVIDER</code> - the property specifying the the
   434      * <li><code>ROWSET_SYNC_PROVIDER</code> - the property specifying the
   435      * <code>SyncProvider</code> class name to be instantiated by the
   435      * <code>SyncProvider</code> class name to be instantiated by the
   436      * <code>SyncFacttory</code>
   436      * <code>SyncFacttory</code>
   437      * <li><code>ROWSET_SYNC_VENDOR</code> - the property specifying the software
   437      * <li><code>ROWSET_SYNC_VENDOR</code> - the property specifying the software
   438      * vendor associated with a <code>SyncProvider</code> implementation.
   438      * vendor associated with a <code>SyncProvider</code> implementation.
   439      * <li><code>ROWSET_SYNC_PROVIDER_VER</code> - the property specifying the
   439      * <li><code>ROWSET_SYNC_PROVIDER_VER</code> - the property specifying the
  3725             }
  3725             }
  3726         } while ((getShowDeleted() == false) && (rowDeleted() == true));
  3726         } while ((getShowDeleted() == false) && (rowDeleted() == true));
  3727 
  3727 
  3728         /*
  3728         /*
  3729          * Each call to internalPrevious may move the cursor
  3729          * Each call to internalPrevious may move the cursor
  3730          * over multiple rows, the absolute position moves one one row
  3730          * over multiple rows, the absolute position moves one row
  3731          */
  3731          */
  3732         if (ret == true)
  3732         if (ret == true)
  3733             --absolutePos;
  3733             --absolutePos;
  3734         else
  3734         else
  3735             absolutePos = 0;
  3735             absolutePos = 0;