/** * Things that can sort arrays of strings. Created as part of a * too-long answer key for Grinnell College's CSC 152 99S. * * @author Samuel A. Rebelsky * @version 1.0 of March 1999 */ public interface StringSorter { /** * Sort an array of strings, returning a sorted version. */ public String[] sort(String[] strings); } // interface StringSorter