implement a few more classpath methods, including Collection.addAll and Collection.toArray

This commit is contained in:
Joel Dice
2008-02-28 11:37:10 -07:00
parent c810eb36d8
commit 9d76d6a04e
11 changed files with 109 additions and 35 deletions

View File

@ -19,7 +19,11 @@ public interface Collection<T> extends Iterable<T> {
public boolean add(T element);
public boolean addAll(Collection<? extends T> collection);
public boolean remove(T element);
public <T> T[] toArray(T[] array);
public void clear();
}