The Java Program: Sorter.java

  1 interface Sorter {
  2    void sort (int[] a);
  3 }