]> gitweb.fperrin.net Git - DictionaryPC.git/blobdiff - src/com/hughes/android/dictionary/engine/IndexedEntry.java
First decent implementation of HtmlEntry attached to TokenRow.
[DictionaryPC.git] / src / com / hughes / android / dictionary / engine / IndexedEntry.java
index 3c0b16856cb52ab71384f647ee1943bd9680f2a9..faf11fd423697b45d24196600a38393ed603ab17 100644 (file)
 
 package com.hughes.android.dictionary.engine;
 
-import com.hughes.util.IndexedObject;
 
-public class IndexedEntry extends IndexedObject {
+public class IndexedEntry {
   AbstractEntry entry;
   public boolean isValid = false;
   
   public IndexedEntry(final AbstractEntry entry) {
-    super(-1);
     this.entry = entry;
   }
-  
-  public void addToDictionary(Dictionary dictionary) {
-    assert index == -1;
-    index = entry.addToDictionary(dictionary);
-  }
 }
\ No newline at end of file