]> 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, final Dictionary.Index index) throws IOException {
22       super(raf, thisRowIndex, index);
23     }
24     public PairEntry getEntry() {
25       return index.getDict().pairEntries.get(referenceIndex);
26     }
27   }
28
29 }