/** ****************************************************************************** * HOMEWORK: 15-121 ****************************************************************************** * Text concordance program ****************************************************************************** * * Sorts words in alphabetical order ignoring upper and lower cases. * * *****************************************************************************/ public class IgnoreUpperCase implements java.util.Comparator { public int compare(Word x, Word y) { throw new RuntimeException ("You need to implement this method"); } }