]> gitweb.fperrin.net Git - Dictionary.git/blobdiff - src/com/hughes/android/dictionary/engine/TokenRow.java
go
[Dictionary.git] / src / com / hughes / android / dictionary / engine / TokenRow.java
index 3335d285aecb010082a5fd1ffe72ffa4860a027c..7a9f5d977f886b39121959e013b0bca17fce4b34 100644 (file)
@@ -3,7 +3,7 @@ package com.hughes.android.dictionary.engine;
 import java.io.IOException;
 import java.io.RandomAccessFile;
 
-public class TokenRow extends RowWithIndex {
+public class TokenRow extends RowBase {
   
   TokenRow(final RandomAccessFile raf, final int thisRowIndex, final Index index) throws IOException {
     super(raf, thisRowIndex, index);
@@ -16,12 +16,18 @@ public class TokenRow extends RowWithIndex {
 
   @Override
   public void setTokenRow(TokenRow tokenRow) {
-    throw new RuntimeException("Shouldn't be setting TokenRow!");
+    throw new RuntimeException("Shouldn't be setting TokenRow's TokenRow!");
   }
   
   public String getToken() {
     return index.sortedIndexEntries.get(referenceIndex).token;
   }
 
+  @Override
+  public Object draw(String searchText) {
+    // TODO Auto-generated method stub
+    return null;
+  }
+
 
 }