public interface ListInterface extends BasicADTInterface {
  public void add(int index, Object item) 
                  throws ListIndexOutOfBoundsException;
  public Object get(int index)
                    throws ListIndexOutOfBoundsException;

  public void remove(int index) 
                     throws ListIndexOutOfBoundsException;
}  // end ListInterface

