diff options
author | James Ahlborn <jtahlborn@yahoo.com> | 2011-03-29 02:23:08 +0000 |
---|---|---|
committer | James Ahlborn <jtahlborn@yahoo.com> | 2011-03-29 02:23:08 +0000 |
commit | 6bd4a16a659df63e1a7d757fa54e21bb203daffa (patch) | |
tree | 42838f2301ac432967a3fe8e0161b1bf889f76be /src/java/com | |
parent | 4423e6d4430f7761a5c1dc46f8a11ee7059e7087 (diff) | |
download | jackcess-6bd4a16a659df63e1a7d757fa54e21bb203daffa.tar.gz jackcess-6bd4a16a659df63e1a7d757fa54e21bb203daffa.zip |
add some method use clarifaction docs.
git-svn-id: https://svn.code.sf.net/p/jackcess/code/jackcess/trunk@538 f203690c-595d-4dc9-a70b-905162fa7fd2
Diffstat (limited to 'src/java/com')
-rw-r--r-- | src/java/com/healthmarketscience/jackcess/Table.java | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/java/com/healthmarketscience/jackcess/Table.java b/src/java/com/healthmarketscience/jackcess/Table.java index 2d107af..aaeb306 100644 --- a/src/java/com/healthmarketscience/jackcess/Table.java +++ b/src/java/com/healthmarketscience/jackcess/Table.java @@ -1361,6 +1361,11 @@ public class Table /** * Update 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 #updateCurrentRow} method or use the Cursor class, which + * allows for more complex table interactions, e.g. + * {@link Cursor#setCurrentRowValue} and {@link Cursor#updateCurrentRow}. */ public void updateRow(RowState rowState, RowId rowId, Object... row) throws IOException |