From f96ce156f9f7c599702d20463b3c500c687ecd92 Mon Sep 17 00:00:00 2001 From: James Ahlborn Date: Tue, 29 Mar 2011 02:27:26 +0000 Subject: [PATCH] more comment updates 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 | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/java/com/healthmarketscience/jackcess/Table.java b/src/java/com/healthmarketscience/jackcess/Table.java index aaeb306..77b82d1 100644 --- a/src/java/com/healthmarketscience/jackcess/Table.java +++ b/src/java/com/healthmarketscience/jackcess/Table.java @@ -409,6 +409,10 @@ public class Table /** * Delete the row on which the given rowState is currently positioned. + *

+ * 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. + *

+ * 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 -- 2.39.5