Coverage Report - org.galagosearch.core.retrieval.structured.StructuredIterator
 
Classes in this File Line Coverage Branch Coverage Complexity
StructuredIterator
N/A
N/A
1
 
 1  
 // BSD License (http://www.galagosearch.org/license)
 2  
 package org.galagosearch.core.retrieval.structured;
 3  
 
 4  
 import java.io.IOException;
 5  
 
 6  
 /**
 7  
  * This is a marker interface that represents any kind of
 8  
  * iterator over an inverted list or query operator.
 9  
  * 
 10  
  * @author trevor
 11  
  */
 12  
 public interface StructuredIterator {
 13  
     public void reset() throws IOException;
 14  
 }