Generated by
JDiff

Class java.util.LinkedList

Documentation changed from old to new.

Changed Constructors
LinkedList(Collection) Documentation changed from old to new.
Constructs a list containing the elements of the specified collection in the order they are returned by the collection's iterator.
 

Changed Methods
Object getFirst() Documentation changed from old to new.
Returns the first element in this list.
boolean addAll(int, Collection) Documentation changed from old to new.
Inserts all of the elements in the specified collection into this list starting at the specified position.
boolean addAll(Collection) Documentation changed from old to new.
Appends all of the elements in the specified collection to the end of this list in the order that they are returned by the specified collection's iterator.
Object[] toArray(Object[]) Documentation changed from old to new.
Returns an array containing all of the elements in this list in the correct order; the runtime type of the returned array is that of the specified array.