]> gitweb.fperrin.net Git - Dictionary.git/blobdiff - src/com/hughes/android/dictionary/engine/RowBase.java
go
[Dictionary.git] / src / com / hughes / android / dictionary / engine / RowBase.java
index d62edf16a49ac550df3a7866c52962e124f19ee0..2d8bf21fee8636dad299fd331b72df030ef72309 100644 (file)
@@ -63,12 +63,8 @@ public abstract class RowBase extends IndexedObject {
     this.tokenRow = tokenRow;
   }
 
-
   public abstract void print(PrintStream out);
   
-  public abstract Object draw(final String searchText);
-
-
   // RowBase must manage "disk-based" polymorphism.  All other polymorphism is
   // dealt with in the normal manner.
   static class Serializer implements RAFListSerializer<RowBase> {
@@ -101,5 +97,4 @@ public abstract class RowBase extends IndexedObject {
     }
   }
 
-
 }