/* * WordBag.java * Created on Feb 24, 2005 */ package word; /** * A multiset of words. */ public interface WordBag { /** * Adds the specified word to the bag and returns the WordCount * for the word just added. */ public WordCount add(String word); }