langtools/src/share/classes/com/sun/tools/javac/util/List.java
changeset 5847 1908176fd6e3
parent 5846 6df0e6bcb388
child 7643 a067a0cda531
equal deleted inserted replaced
5846:6df0e6bcb388 5847:1908176fd6e3
    41  *  than arrays.
    41  *  than arrays.
    42  *
    42  *
    43  *  <p>Lists are always trailed by a sentinel element, whose head and tail
    43  *  <p>Lists are always trailed by a sentinel element, whose head and tail
    44  *  are both null.
    44  *  are both null.
    45  *
    45  *
    46  *  <p><b>This is NOT part of any API supported by Sun Microsystems.  If
    46  *  <p><b>This is NOT part of any supported API.
    47  *  you write code that depends on this, you do so at your own risk.
    47  *  If you write code that depends on this, you do so at your own risk.
    48  *  This code and its internal interfaces are subject to change or
    48  *  This code and its internal interfaces are subject to change or
    49  *  deletion without notice.</b>
    49  *  deletion without notice.</b>
    50  */
    50  */
    51 public class List<A> extends AbstractCollection<A> implements java.util.List<A> {
    51 public class List<A> extends AbstractCollection<A> implements java.util.List<A> {
    52 
    52