Searched defs:Collection (Results 1 - 2 of 2) sorted by relevance

/openjdk7/langtools/test/tools/javac/generics/
H A DInterfaceCast1.java38 interface Collection<E> { interface
42 interface Set<E> extends Collection<E> {
50 public void addAll(Collection<E> c) {
/openjdk7/jdk/src/share/classes/java/util/
H A DCollection.java41 * <p>All general-purpose <tt>Collection</tt> implementation classes (which
42 * typically implement <tt>Collection</tt> indirectly through one of its
45 * constructor with a single argument of type <tt>Collection</tt>, which
50 * constructors) but all of the general-purpose <tt>Collection</tt>
59 * the {@link #addAll(Collection)} method on an unmodifiable collection may,
92 * <i>not</i> be construed to imply that invoking <tt>Collection.contains</tt>
127 public interface Collection<E> extends Iterable<E> { interface in inherits:Iterable
248 * Collection classes should clearly specify in their documentation any
316 boolean containsAll(Collection<?> c);
342 boolean addAll(Collection<
[all...]

Completed in 43 milliseconds