]> gitweb.fperrin.net Git - Dictionary.git/commitdiff
go
authorThad Hughes <thad.hughes@gmail.com>
Sat, 24 Jul 2010 01:13:29 +0000 (18:13 -0700)
committerThad Hughes <thad.hughes@gmail.com>
Sat, 24 Jul 2010 01:13:29 +0000 (18:13 -0700)
src/com/hughes/android/dictionary/engine/Row.java

index 0f52c30332838b8b6c1de48b7f3d569fd7637af2..fd10d5b3ceba43d168647e52afa3fa88b8037edb 100644 (file)
@@ -15,6 +15,8 @@ public interface Row {
   public TokenRow getTokenRow(final boolean search);
   
   public void setTokenRow(final TokenRow tokenRow);
+  
+  public Object draw(final String searchText);
 
 
   // Row must manage "disk-based" polymorphism.  All other polymorphism is
@@ -45,6 +47,7 @@ public interface Row {
       } else if (t instanceof TokenRow) {
         raf.writeByte(1);
       }
+      t.write(raf);
     }
   };
 }