Searched defs:addAll (Results 1 - 25 of 63) sorted by relevance

123

/openjdk7/jdk/src/share/classes/javax/print/attribute/
H A DDocAttributeSet.java41 * {@link #addAll(AttributeSet) <CODE>addAll(AttributeSet)</CODE>} operations
81 * the <tt>addAll()</tt> operation effectively modifies this attribute
84 * The behavior of the <CODE>addAll()</CODE> operation is unspecified if
87 * If the <CODE>addAll()</CODE> operation throws an exception, the effect
100 * support the <tt>addAll()</tt> method.
110 public boolean addAll(AttributeSet attributes); method in interface:DocAttributeSet
H A DPrintJobAttributeSet.java40 * {@link #addAll(AttributeSet) <CODE>addAll(AttributeSet)</CODE>} operations
79 * the <tt>addAll()</tt> operation effectively modifies this attribute
82 * The behavior of the <CODE>addAll()</CODE> operation is unspecified if
85 * If the <CODE>addAll()</CODE> operation throws an exception, the effect
98 * support the <tt>addAll()</tt> method.
108 public boolean addAll(AttributeSet attributes); method in interface:PrintJobAttributeSet
H A DPrintRequestAttributeSet.java41 * {@link #addAll(AttributeSet) <CODE>addAll(AttributeSet)</CODE>} operations
80 * the <tt>addAll()</tt> operation effectively modifies this attribute
83 * The behavior of the <CODE>addAll()</CODE> operation is unspecified if
86 * If the <CODE>addAll()</CODE> operation throws an exception, the effect
99 * support the <tt>addAll()</tt> method.
109 public boolean addAll(AttributeSet attributes); method in interface:PrintRequestAttributeSet
H A DPrintServiceAttributeSet.java43 * {@link #addAll(AttributeSet) <CODE>addAll(AttributeSet)</CODE>} operations
84 * the <tt>addAll()</tt> operation effectively modifies this attribute
87 * The behavior of the <CODE>addAll()</CODE> operation is unspecified if
90 * If the <CODE>addAll()</CODE> operation throws an exception, the effect
103 * support the <tt>addAll()</tt> method.
113 public boolean addAll(AttributeSet attributes); method in interface:PrintServiceAttributeSet
H A DAttributeSet.java223 * The behavior of the <CODE>addAll(AttributeSet)</CODE>
227 * If the <CODE>addAll(AttributeSet)</CODE> operation throws an exception,
240 * the <tt>addAll(AttributeSet)</tt> method.
247 public boolean addAll(AttributeSet attributes); method in interface:AttributeSet
H A DHashAttributeSet.java394 * The behavior of the <CODE>addAll(AttributeSet)</CODE>
398 * If the <CODE>addAll(AttributeSet)</CODE> operation throws an exception,
411 * support the <tt>addAll(AttributeSet)</tt> method.
418 public boolean addAll(AttributeSet attributes) { method in class:HashAttributeSet
H A DAttributeSetUtilities.java114 public boolean addAll(AttributeSet attributes) { method in class:AttributeSetUtilities.UnmodifiableAttributeSet
325 public synchronized boolean addAll(AttributeSet attributes) { method in class:AttributeSetUtilities.SynchronizedAttributeSet
326 return attrset.addAll(attributes);
/openjdk7/jdk/src/share/classes/java/util/
H A DAbstractQueue.java153 * queue. Attempts to addAll of a queue to itself result in
180 public boolean addAll(Collection<? extends E> c) { method in class:AbstractQueue
H A DAbstractSequentialList.java212 public boolean addAll(int index, Collection<? extends E> c) { method in class:AbstractSequentialList
H A DAbstractCollection.java339 public boolean addAll(Collection<? extends E> c) { method in class:AbstractCollection
H A DCollection.java59 * the {@link #addAll(Collection)} method on an unmodifiable collection may,
328 * @throws UnsupportedOperationException if the <tt>addAll</tt> operation
342 boolean addAll(Collection<? extends E> c); method in interface:Collection
H A DSet.java278 * collection is also a set, the <tt>addAll</tt> operation effectively
286 * @throws UnsupportedOperationException if the <tt>addAll</tt> operation
297 boolean addAll(Collection<? extends E> c); method in interface:Set
H A DEnumSet.java128 result.addAll();
136 abstract void addAll(); method in class:EnumSet
/openjdk7/jdk/src/share/classes/javax/accessibility/
H A DAccessibleRelationSet.java48 * @see #addAll
125 public void addAll(AccessibleRelation[] relations) { method in class:AccessibleRelationSet
H A DAccessibleStateSet.java48 * @see #addAll
111 public void addAll(AccessibleState[] states) { method in class:AccessibleStateSet
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/reader/gbind/
H A DElementSets.java58 addAll(lhs);
59 addAll(rhs);
65 private void addAll(ElementSet lhs) { method in class:ElementSets.MultiValueSet
67 super.addAll((MultiValueSet)lhs);
/openjdk7/langtools/test/tools/javac/generics/
H A DInterfaceCast1.java50 public void addAll(Collection<E> c) { method in class:TreeSet
/openjdk7/jdk/src/share/classes/javax/management/
H A DAttributeList.java137 super.addAll(list);
227 * @see ArrayList#addAll(java.util.Collection)
229 public boolean addAll(AttributeList list) { method in class:AttributeList
230 return (super.addAll(list));
247 * @see ArrayList#addAll(int, java.util.Collection)
249 public boolean addAll(int index, AttributeList list) { method in class:AttributeList
251 return super.addAll(index, list);
295 public boolean addAll(Collection<?> c) { method in class:AttributeList
297 return super.addAll(c);
307 public boolean addAll(in method in class:AttributeList
[all...]
/openjdk7/jdk/src/share/classes/java/util/concurrent/
H A DCopyOnWriteArraySet.java269 * set, the <tt>addAll</tt> operation effectively modifies this set so
279 public boolean addAll(Collection<? extends E> c) { method in class:CopyOnWriteArraySet
/openjdk7/jdk/src/share/classes/javax/management/relation/
H A DRoleList.java113 super.addAll(list);
232 * @see ArrayList#addAll(Collection)
234 public boolean addAll(RoleList roleList) method in class:RoleList
241 return (super.addAll(roleList));
259 * @see ArrayList#addAll(int, Collection)
261 public boolean addAll(int index, method in class:RoleList
272 return (super.addAll(index, roleList));
300 public boolean addAll(Collection<?> c) { method in class:RoleList
305 return super.addAll(c);
309 public boolean addAll(in method in class:RoleList
[all...]
H A DRoleUnresolvedList.java113 super.addAll(list);
234 public boolean addAll(RoleUnresolvedList roleList) method in class:RoleUnresolvedList
241 return (super.addAll(roleList));
259 public boolean addAll(int index, method in class:RoleUnresolvedList
269 return (super.addAll(index, roleList));
297 public boolean addAll(Collection<?> c) { method in class:RoleUnresolvedList
302 return super.addAll(c);
306 public boolean addAll(int index, Collection<?> c) { method in class:RoleUnresolvedList
311 return super.addAll(index, c);
/openjdk7/jdk/src/share/classes/javax/naming/
H A DName.java204 public Name addAll(Name suffix) throws InvalidNameException; method in interface:Name
226 public Name addAll(int posn, Name n) throws InvalidNameException; method in interface:Name
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/xsom/util/
H A DDeferedCollection.java143 public boolean addAll(Collection<? extends T> c) { method in class:DeferedCollection
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXAtomList.java150 public void addAll(XAtomList atoms) { method in class:XAtomList
/openjdk7/jdk/src/share/classes/sun/awt/util/
H A DIdentityArrayList.java448 public boolean addAll(Collection<? extends E> c) { method in class:IdentityArrayList
472 public boolean addAll(int index, Collection<? extends E> c) { method in class:IdentityArrayList
526 * A version of rangeCheck used by add and addAll.

Completed in 159 milliseconds

123