| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| Text |
|
| 1.0;1 |
| 1 | package org.paneris.bibliomania.fti; | |
| 2 | ||
| 3 | import java.io.IOException; | |
| 4 | import java.io.InputStream; | |
| 5 | ||
| 6 | public interface Text { | |
| 7 | long ftiTextID(); | |
| 8 | InputStream body() throws IOException; | |
| 9 | InputStream bodyForFragment() throws IOException; | |
| 10 | } |