// Steve Gribble // March 8 2006 // This class keeps track of a word, and // how many times the word was seen public class WordCount { public String word; public int count; public WordCount(String word) { this.word = word; this.count = 1; } }