import java.awt.*; 

public interface SortDisplay {
  int getArraySize(Dimension d); 
  void display(int a[], Graphics g, Dimension d); 
}
