Coverage Report - org.paneris.bibliomania.fti.Text
 
Classes in this File Line Coverage Branch Coverage Complexity
Text
N/A
N/A
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  
 }