diff options
author | James Ahlborn <jtahlborn@yahoo.com> | 2013-03-14 21:00:46 +0000 |
---|---|---|
committer | James Ahlborn <jtahlborn@yahoo.com> | 2013-03-14 21:00:46 +0000 |
commit | 8b70e4e1d2fb38510268952a86dff78ff015cfbe (patch) | |
tree | 503032c0912b1613edeba1b5dea372b971676495 /src | |
parent | 70e3b4b170b08c58f64dcc5a9be509651f7210b0 (diff) | |
download | jackcess-8b70e4e1d2fb38510268952a86dff78ff015cfbe.tar.gz jackcess-8b70e4e1d2fb38510268952a86dff78ff015cfbe.zip |
fix docs
git-svn-id: https://svn.code.sf.net/p/jackcess/code/jackcess/branches/jackcess-2@683 f203690c-595d-4dc9-a70b-905162fa7fd2
Diffstat (limited to 'src')
-rw-r--r-- | src/java/com/healthmarketscience/jackcess/Table.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/java/com/healthmarketscience/jackcess/Table.java b/src/java/com/healthmarketscience/jackcess/Table.java index e23b494..62403bf 100644 --- a/src/java/com/healthmarketscience/jackcess/Table.java +++ b/src/java/com/healthmarketscience/jackcess/Table.java @@ -138,7 +138,7 @@ public interface Table extends Iterable<Map<String, Object>> /** * Converts a map of columnName -> columnValue to an array of row values - * appropriate for a call to {@link #updateCurrentRow(Object...)}. + * appropriate for a call to {@link Cursor#updateCurrentRow(Object...)}. * @usage _general_method_ */ public Object[] asUpdateRow(Map<String,?> rowMap); @@ -153,7 +153,7 @@ public interface Table extends Iterable<Map<String, Object>> * expected to be given in the order that the Columns are listed by the * {@link #getColumns} method. This is by default the storage order of the * Columns in the database, however this order can be influenced by setting - * the ColumnOrder via {@link DatabaseImpl#setColumnOrder} prior to opening + * the ColumnOrder via {@link Database#setColumnOrder} prior to opening * the Table. The {@link #asRow} method can be used to easily convert a row * Map into the appropriate row array for this Table. * <p> |