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

@ -10,6 +10,4 @@
package java.util;
public interface Set<T> extends Collection<T> {
public void addAll(Collection<T> c);
}
public interface Set<T> extends Collection<T> { }