Show Source.java syntax highlighted
package net.time4tea.webstats.source;
import net.time4tea.webstats.parser.ParseException;
import java.io.IOException;
/**
* Originally richja 14-Jan-2007
*/
public interface Source<T> {
T next() throws IOException, ParseException;
int count();
}
See more files for this project here