diff options
author | James Ahlborn <jtahlborn@yahoo.com> | 2013-03-18 11:56:53 +0000 |
---|---|---|
committer | James Ahlborn <jtahlborn@yahoo.com> | 2013-03-18 11:56:53 +0000 |
commit | d3e998407430ec247f323289e47e044997b93473 (patch) | |
tree | e2c4563b3e3249985fac8c1edc2fc6e5754134e2 | |
parent | 402802c8e8994333730751a317857a936bb2de8b (diff) | |
download | jackcess-d3e998407430ec247f323289e47e044997b93473.tar.gz jackcess-d3e998407430ec247f323289e47e044997b93473.zip |
fix docs
git-svn-id: https://svn.code.sf.net/p/jackcess/code/jackcess/branches/jackcess-2@696 f203690c-595d-4dc9-a70b-905162fa7fd2
-rw-r--r-- | TODO.txt | 9 | ||||
-rw-r--r-- | src/java/com/healthmarketscience/jackcess/complex/ComplexValue.java | 2 |
2 files changed, 6 insertions, 5 deletions
@@ -33,15 +33,16 @@ Refactor goals: - tweak lookup apis (specify column vs column name) - separate classes into more packages (api,builder,util,impl) * remove debug log blocks -- add Row interface -- change savepoint to use table number instead of name? +* add Row interface +* change savepoint to use table number instead of name? * don't use columnimpl for creating tables * clean up columnimpl/tableimpl constructors -- add updateCurrentRow(Map), add updateRow(Row) +* add updateCurrentRow(Map), add updateRow(Row) - sort out query types - clean up javadocs - enhance public api classes - add @usage tags to util classes * add unit tests for Row update/delete methods, add/update *FromMap methods * add reason to unsupop throws for indexes -- remove static methods in CursorImpl/IndexCursorImpl
\ No newline at end of file +* remove static methods in CursorImpl/IndexCursorImpl +- add RowId to ComplexValue diff --git a/src/java/com/healthmarketscience/jackcess/complex/ComplexValue.java b/src/java/com/healthmarketscience/jackcess/complex/ComplexValue.java index 4e6f19a..beaea04 100644 --- a/src/java/com/healthmarketscience/jackcess/complex/ComplexValue.java +++ b/src/java/com/healthmarketscience/jackcess/complex/ComplexValue.java @@ -24,7 +24,7 @@ import java.io.IOException; import com.healthmarketscience.jackcess.Column; /** - * Base class for a value in a complex column (where there may be multiple + * Base interface for a value in a complex column (where there may be multiple * values for a single row in the main table). * * @author James Ahlborn |