]> source.dussan.org Git - jackcess.git/commitdiff
tweak some docs
authorJames Ahlborn <jtahlborn@yahoo.com>
Sat, 2 May 2015 21:32:02 +0000 (21:32 +0000)
committerJames Ahlborn <jtahlborn@yahoo.com>
Sat, 2 May 2015 21:32:02 +0000 (21:32 +0000)
git-svn-id: https://svn.code.sf.net/p/jackcess/code/jackcess/trunk@942 f203690c-595d-4dc9-a70b-905162fa7fd2

TODO.txt
src/main/java/com/healthmarketscience/jackcess/impl/ColumnImpl.java
src/main/java/com/healthmarketscience/jackcess/impl/DatabaseImpl.java
src/main/java/com/healthmarketscience/jackcess/impl/TableImpl.java

index f60b600854b7170463dc3e19a085e35b5e227822..95122713f01f4db3f66edf388b1c30ffce14ee95 100644 (file)
--- a/TODO.txt
+++ b/TODO.txt
@@ -25,3 +25,11 @@ Refactor goals:
 - implement page buffering in PageChannel
   * need to implement logical flushing in update code (startUpdate/finishUpdate)
 - add typed getter methods to PropertyMap
+
+Index add (fk impl)
+- Database.addIndex(IndexBuilder) - use TableCreator internal
+  - add indexes separately from adding fk info,
+    - need to populate index after creation! populate first, then add?
+  - add relationships
+- flush all non-system tables from DbImpl._tableCache (references to old table
+  impls)
index b4b7cc26dca1e77c2e4c857e6e8eef23c60ad606..6465512a83202015e125cb5beb94ab12fb6495fe 100644 (file)
@@ -58,7 +58,7 @@ import org.apache.commons.logging.LogFactory;
 /**
  * Access database column definition
  * @author Tim McCune
- * @usage _general_class_
+ * @usage _intermediate_class_
  */
 public class ColumnImpl implements Column, Comparable<ColumnImpl> {
   
index 8cf809dcb6cd9da0fda1b155a95f906c7e43a67d..4f3c554aae13563d8c6aa0cda20ebdaf0dd9798b 100644 (file)
@@ -75,7 +75,7 @@ import org.apache.commons.logging.LogFactory;
 /**
  *
  * @author Tim McCune
- * @usage _general_class_
+ * @usage _intermediate_class_
  */
 public class DatabaseImpl implements Database
 {  
index e2953160417ee99c64c86ea36ee778d04ba68534..7aea12add36cdb5cf4d87a7c9a29c339ff04aa08 100644 (file)
@@ -55,7 +55,7 @@ import org.apache.commons.logging.LogFactory;
  * Is not thread-safe.
  * 
  * @author Tim McCune
- * @usage _general_class_
+ * @usage _intermediate_class_
  */
 public class TableImpl implements Table
 {