FileDocCategorySizeDatePackage
WordCount.javaAPI DocExample275Tue Dec 12 18:58:22 GMT 2000None

WordCount.java

/**
 * The WordCount service. Implementations of the
 * countWords() method are provided by the 
 * WordCountServiceProvider class.
 */
public interface WordCount {

     /**
      * Counts the number of words in the file.
      */
     public abstract void countWords();

}