boolean addAll(Collection c)
Overrides:
boolean addAll(int index, Collection c)
Overrides:
Throws:
_INSERT_METHOD_SIGNATURE_HERE_
Description:
Implements interface method List.addAll.
addAll(Collection c) method:
Appends all of the elements in the specified Collection to the end of this Vector, in the order that they are returned by the specified Collection's Iterator. The behavior of this operation is undefined if the specified Collection is modified while the operation is in progress. (This implies that the behavior of this call is undefined if the specified Collection is this Vector, and this Vector is nonempty.)
addAll(int index, Collection c) method:
Inserts all of the elements in in the specified Collection into this Vector at the specified position. Shifts the element currently at that position (if any) and any subsequent elements to the right (increases their indices). The new elements will appear in the Vector in the order that they are returned by the specified Collection's iterator.