Added method addAll to interface Map

This commit is contained in:
Eric Scharff
2007-09-26 09:19:21 -06:00
parent b02b98609e
commit 876b02f641
3 changed files with 18 additions and 3 deletions

View File

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