Code Search for Developers
 
 
  

Source.java from Tea Stats at Krugle


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

Tea Stats

Web log analyzer... Written in OO Perl, provides the usual host / page analysis. Can also do site graphing using graphviz, browser, os, worm and search engine identification, and country and session tracking.

Project homepage: http://sourceforge.net/projects/teastats
Programming language(s): Java
License: other

  FilteringPageSource.java
  NaiveHostBasedSessionConverter.java
  PageViewSource.java
  ParsingPageViewSource.java
  SessionSource.java
  Source.java