]> gitweb.fperrin.net Git - DictionaryPC.git/blobdiff - src/com/hughes/android/dictionary/engine/IndexedEntry.java
Unit tests working, looks like I'd been revamping the parsers.
[DictionaryPC.git] / src / com / hughes / android / dictionary / engine / IndexedEntry.java
index 6f1b8da930e890f9e67675e9853369b0242aed2f..3c0b16856cb52ab71384f647ee1943bd9680f2a9 100644 (file)
@@ -17,11 +17,13 @@ package com.hughes.android.dictionary.engine;
 import com.hughes.util.IndexedObject;
 
 public class IndexedEntry extends IndexedObject {
+  AbstractEntry entry;
+  public boolean isValid = false;
+  
   public IndexedEntry(final AbstractEntry entry) {
     super(-1);
     this.entry = entry;
   }
-  AbstractEntry entry;
   
   public void addToDictionary(Dictionary dictionary) {
     assert index == -1;