]> source.dussan.org Git - jackcess.git/commitdiff
add Index.getName
authorJames Ahlborn <jtahlborn@yahoo.com>
Mon, 25 Jun 2007 20:03:56 +0000 (20:03 +0000)
committerJames Ahlborn <jtahlborn@yahoo.com>
Mon, 25 Jun 2007 20:03:56 +0000 (20:03 +0000)
git-svn-id: https://svn.code.sf.net/p/jackcess/code/jackcess/trunk@149 f203690c-595d-4dc9-a70b-905162fa7fd2

src/java/com/healthmarketscience/jackcess/Index.java

index 3f18a337f04aab92da5bc3cc8d214b0076478ade..9512a4e086b7f27ebdae7f32e96b94df4c5083b1 100644 (file)
@@ -221,6 +221,19 @@ public class Index implements Comparable<Index> {
   public void setRowCount(int rowCount) {
     _rowCount = rowCount;
   }
+
+  /**
+   * Note, there may still be some issues around the name of an index, this
+   * information may not be correct.  I've done a variety of testing comparing
+   * the index name to what ms access shows, and i think the data is being
+   * parsed correctly, but sometimes access comes up with a completely
+   * different index name, hence my lack of confidence in this method.  (of
+   * course, access could also just be doing some monkeying under the
+   * hood...).
+   */
+  public String getName() {
+    return _name;
+  }
   
   public void setName(String name) {
     _name = name;