]> gitweb.fperrin.net Git - DictionaryPC.git/blobdiff - src/com/hughes/android/dictionary/engine/IndexedEntry.java
Apply astyle code formatting.
[DictionaryPC.git] / src / com / hughes / android / dictionary / engine / IndexedEntry.java
index 3c0b16856cb52ab71384f647ee1943bd9680f2a9..d7089511355b27f5b22995c7bc41eb000842fae9 100644 (file)
 
 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;
-  }
-  
-  public void addToDictionary(Dictionary dictionary) {
-    assert index == -1;
-    index = entry.addToDictionary(dictionary);
-  }
+public class IndexedEntry {
+    AbstractEntry entry;
+    public boolean isValid = false;
+
+    public IndexedEntry(final AbstractEntry entry) {
+        this.entry = entry;
+    }
 }
\ No newline at end of file