1: import java.awt.*; 2: 3: public interface SortDisplay { 4: int getArraySize(Dimension d); 5: void display(int a[], Graphics g, Dimension d); 6: }