X-Git-Url: http://gitweb.fperrin.net/?a=blobdiff_plain;f=src%2Fcom%2Fhughes%2Fandroid%2Fdictionary%2Fengine%2FRowBase.java;fp=src%2Fcom%2Fhughes%2Fandroid%2Fdictionary%2Fengine%2FRowBase.java;h=64500585e4b9716c78a300346bbac4b5a1ba849e;hb=9f830ff4f8546209a28bc8cc3a831000e92e9a9b;hp=2d8bf21fee8636dad299fd331b72df030ef72309;hpb=d3d2ec689514a90d73e35ddb6fb832fb42e3990d;p=Dictionary.git diff --git a/src/com/hughes/android/dictionary/engine/RowBase.java b/src/com/hughes/android/dictionary/engine/RowBase.java index 2d8bf21..6450058 100644 --- a/src/com/hughes/android/dictionary/engine/RowBase.java +++ b/src/com/hughes/android/dictionary/engine/RowBase.java @@ -11,17 +11,17 @@ public abstract class RowBase extends IndexedObject { /** * the Index owning this RowBase. */ - final Index index; + public final Index index; /** * Where this RowBase points to. */ - int referenceIndex; + public final int referenceIndex; /** * the TokenRow above this RowBase, populated on demand. */ - TokenRow tokenRow = null; + private TokenRow tokenRow = null; RowBase(final RandomAccessFile raf, final int thisRowIndex, final Index index) throws IOException { super(thisRowIndex);