Generated by
JDiff

Class java.util.LinkedList

Added interface java.util.Queue.

Added Methods
Object element() Retrieves, but does not remove, the head (first element) of this list.
boolean offer(Object) Adds the specified element as the tail (last element) of this list.
Object peek() Retrieves, but does not remove, the head (first element) of this list.
Object poll() Retrieves and removes the head (first element) of this list.
Object remove() Retrieves and removes the head (first element) of this list.