]> gitweb.fperrin.net Git - Dictionary.git/blobdiff - src/com/hughes/android/dictionary/engine/TokenRow.java
UI changes, (experiments), Arabic rendering changes, changing the way
[Dictionary.git] / src / com / hughes / android / dictionary / engine / TokenRow.java
index 247436b781108b632283fda7b2a5a98e80f5f736..8579761722aa6a4c6240e856234c0a1485b7d639 100644 (file)
@@ -20,12 +20,16 @@ import java.io.RandomAccessFile;
 
 public class TokenRow extends RowBase {
   
-  TokenRow(final RandomAccessFile raf, final int thisRowIndex, final Index index) throws IOException {
+  final boolean hasMainEntry;
+  
+  TokenRow(final RandomAccessFile raf, final int thisRowIndex, final Index index, final boolean hasMainEntry) throws IOException {
     super(raf, thisRowIndex, index);
+    this.hasMainEntry = hasMainEntry;
   }
 
-  TokenRow(final int referenceIndex, final int thisRowIndex, final Index index) {
+  TokenRow(final int referenceIndex, final int thisRowIndex, final Index index, final boolean hasMainEntry) {
     super(referenceIndex, thisRowIndex, index);
+    this.hasMainEntry = hasMainEntry;
   }
   
   public String toString() {