]> source.dussan.org Git - jackcess.git/commitdiff
more comment updates
authorJames Ahlborn <jtahlborn@yahoo.com>
Tue, 29 Mar 2011 02:27:26 +0000 (02:27 +0000)
committerJames Ahlborn <jtahlborn@yahoo.com>
Tue, 29 Mar 2011 02:27:26 +0000 (02:27 +0000)
git-svn-id: https://svn.code.sf.net/p/jackcess/code/jackcess/trunk@539 f203690c-595d-4dc9-a70b-905162fa7fd2

src/java/com/healthmarketscience/jackcess/Table.java

index aaeb30613c0f7c211dc2c48572ba60f104e8aa27..77b82d16790642def772c9ac7e4572505dc794ca 100644 (file)
@@ -409,6 +409,10 @@ public class Table
 
   /**
    * Delete the row on which the given rowState is currently positioned.
+   * <p>
+   * Note, this method is not generally meant to be used directly.  You should
+   * use the {@link #deleteCurrentRow} method or use the Cursor class, which
+   * allows for more complex table interactions.
    */
   public void deleteRow(RowState rowState, RowId rowId) throws IOException {
     requireValidRowId(rowId);
@@ -460,6 +464,10 @@ public class Table
   
   /**
    * Reads a single column from the given row.
+   * <p>
+   * Note, this method is not generally meant to be used directly.  Instead
+   * use the Cursor class, which allows for more complex table interactions,
+   * e.g. {@link Cursor#getCurrentRowValue}.
    */
   public Object getRowValue(RowState rowState, RowId rowId, Column column)
     throws IOException