]> gitweb.fperrin.net Git - Dictionary.git/blob - src/com/hughes/android/dictionary/engine/PairEntry.java
go
[Dictionary.git] / src / com / hughes / android / dictionary / engine / PairEntry.java
1 package com.hughes.android.dictionary.engine;
2
3 import java.io.IOException;
4 import java.io.RandomAccessFile;
5 import java.util.List;
6
7 public class PairEntry extends Entry {
8
9   @Override
10   List<String> getMainTokens() {
11     return null;
12   }
13
14   @Override
15   List<String> getOtherTokens() {
16     return null;
17   }
18
19   
20   public static class Row extends RowWithIndex {
21     Row(final RandomAccessFile raf, final int thisRowIndex,
22         final Index index) throws IOException {
23       super(raf, thisRowIndex, index);
24     }
25     public PairEntry getEntry() {
26       return index.dict.pairEntries.get(referenceIndex);
27     }
28   }
29
30 }