/* File: IntSorter.java - March 2013 */ package l09; /** * An interface for classes that sort arrays of integers. * * @author Michael Albert * */ public interface IntSorter{ public void sort(int[] a); public String getName(); }