blob: 2fbb042516a5b0c6ae767d94a9601f88179150ea [file] [log] [blame]
package java.util;
public interface Collection<E> extends Iterable<E> {
void addAll(Collection<? extends E> other);
E[] toArray();
public int size();
}