blob: f7c133b14d71f44530cdb5fbf13e469cd85cea04 [file] [log] [blame]
package test;
public interface Collection<E> {
void add(E e);
void remove(E e);
boolean contains(E e);
Iterator<E> iterator();
void putAll(Collection<E> l);
}