src/share/classes/java/util/LinkedList.java

Print this page

        

@@ -24,22 +24,21 @@
  */
 
 package java.util;
 
 /**
- * Linked list implementation of the {@code List} interface.  Implements all
- * optional list operations, and permits all elements (including
- * {@code null}).  In addition to implementing the {@code List} interface,
- * the {@code LinkedList} class provides uniformly named methods to
- * {@code get}, {@code remove} and {@code insert} an element at the
- * beginning and end of the list.  These operations allow linked lists to be
- * used as a stack, {@linkplain Queue queue}, or {@linkplain Deque
- * double-ended queue}.
- *
- * <p>The class implements the {@code Deque} interface, providing
- * first-in-first-out queue operations for {@code add},
- * {@code poll}, along with other stack and deque operations.
+ * Linked list implementation of the {@code List} interface.
+ * Implements all optional list operations, and permits all elements
+ * (including {@code null}).  In addition to implementing the {@code
+ * List} interface, the {@code LinkedList} class provides uniformly
+ * named methods to {@code get}, {@code remove} and {@code add} an
+ * element at the beginning (<i>operation</i>{@code First}) and end
+ * (<i>operation</i>{@code Last}) of the list.  These operations allow
+ * linked lists to be used as a stack, {@linkplain Queue queue}, or
+ * {@linkplain Deque deque} (double-ended queue); by implementing the
+ * {@link Deque} interface, support is included for first-in-first-out
+ * operations for {@code add} and {@code poll}.
  *
  * <p>All of the operations perform as could be expected for a doubly-linked
  * list.  Operations that index into the list will traverse the list from
  * the beginning or the end, whichever is closer to the specified index.
  *