public interface SimpleCollection { boolean add(E element); boolean contains(Object o); SimpleIterator iterator(); }