/* StringSorterLexicoReverse.java ** An instance of this class has methods (inherited from its parent) ** by which to sort an array (or a segment thereof) of Strings into ** ascending order. It supplies the body of isLessThan() for the ** purpose of defining/implementing an ordering on strings. Here, ** that is the reverse of lexicographic ordering. */ public class StringSorterLexicoReverse extends StringSorter { /* Returns true iff s1 > s2 according lexicographic ordering. */ @Override protected boolean isLessThan(String s1, String s2) { return false; // STUB } }