| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| SearchResults |
|
| 1.0;1 |
| 1 | package org.paneris.bibliomania.fti; | |
| 2 | ||
| 3 | import com.sleepycat.db.DatabaseException; | |
| 4 | ||
| 5 | public interface SearchResults extends TextSearchResults { | |
| 6 | int frequency(); | |
| 7 | void gotoText(long textID) throws DatabaseException; | |
| 8 | long currentTextID(); | |
| 9 | } |