//////////////////////////////////////////////////////////////// // // Students must modify this file, and this file only. // // This file consists entirely of stub code, just enough for the // Week11 application to compile and to run without throwing any // exceptions. // //////////////////////////////////////////////////////////////// import java.util.*; //////////////////////////////////////////////////////////////// // // Word // //////////////////////////////////////////////////////////////// class Word implements Comparable { Word (String w) { } public int compareTo (Object x) { return 0; } //FIXME } //////////////////////////////////////////////////////////////// // // WordCounter // //////////////////////////////////////////////////////////////// class WordCounter { WordCounter () { } void countWords (Iterator it) { } int words () { return 0; } //FIXME void printWords (int n) { } } //////////////////////////////////////////////////////////////// // // StudentTests // //////////////////////////////////////////////////////////////// class StudentTests { void run () { // Your examples and tests go here. } }