/** ****************************************************************************** * HOMEWORK: 15-121 ****************************************************************************** * Text concordance program ****************************************************************************** * * Sorts words by frequency. In case of a tie, words are compared in * case-sensitive alphabetical order * *****************************************************************************/ public class AlphaFrequency implements java.util.Comparator { public int compare(Word x, Word y) { throw new RuntimeException ("You need to implement this method"); } }