X-Git-Url: http://gitweb.fperrin.net/?a=blobdiff_plain;f=src%2Fcom%2Fhughes%2Fandroid%2Fdictionary%2Fengine%2FTokenRow.java;fp=src%2Fcom%2Fhughes%2Fandroid%2Fdictionary%2Fengine%2FTokenRow.java;h=8579761722aa6a4c6240e856234c0a1485b7d639;hb=98518a3277e3083a4bef9888042571f2dbe22b15;hp=247436b781108b632283fda7b2a5a98e80f5f736;hpb=60bb22db1adcbbaf8f064d1bc1f92c29a77496f1;p=Dictionary.git diff --git a/src/com/hughes/android/dictionary/engine/TokenRow.java b/src/com/hughes/android/dictionary/engine/TokenRow.java index 247436b..8579761 100644 --- a/src/com/hughes/android/dictionary/engine/TokenRow.java +++ b/src/com/hughes/android/dictionary/engine/TokenRow.java @@ -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() {