public interface SortedListInterface extends BasicADTInterface {
  public void sortedAdd(Comparable newItem) throws ListException;
  public Comparable get (int index)
                         throws ListIndexOutOfBoundsException;
  public int locateIndex(Comparable anItem);
  public void sortedRemove(Comparable anItem)
                         throws ListException;
}  // end SortedListInterface
