Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
TextSearchResults |
|
| 1.0;1 |
1 | package org.paneris.bibliomania.fti; | |
2 | ||
3 | import org.melati.poem.transaction.ToTidyList; | |
4 | ||
5 | public interface TextSearchResults extends ToTidyList.Closeable { | |
6 | int hitWordsCount(); | |
7 | void init(); | |
8 | void skipToNextHit(); | |
9 | void skipToWordIndex(int wordIndex); | |
10 | int currentWordIndex(); | |
11 | int currentOffset(); | |
12 | } |