public interface BasicADTInterface { 
  public int size();
  public boolean isEmpty();
  public void removeAll();
}  // end BasicADTInterface
