View Javadoc

1   // BSD License (http://www.galagosearch.org/license)
2   
3   
4   package org.galagosearch.core.parse;
5   
6   import java.io.IOException;
7   
8   /***
9    *
10   * @author trevor
11   */
12  public interface DocumentStreamParser {
13      public Document nextDocument() throws IOException;
14  }