Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

org.sablecc.sablecc
Class TypedLinkedList  view TypedLinkedList download TypedLinkedList.java

java.lang.Object
  extended byjava.util.AbstractCollection
      extended byjava.util.AbstractList
          extended byjava.util.AbstractSequentialList
              extended byjava.util.LinkedList
                  extended byorg.sablecc.sablecc.TypedLinkedList
All Implemented Interfaces:
java.lang.Cloneable, java.util.Collection, java.lang.Iterable, java.util.List, java.io.Serializable

public class TypedLinkedList
extends java.util.LinkedList


Nested Class Summary
private  class TypedLinkedList.TypedLinkedListIterator
           
 
Nested classes inherited from class java.util.LinkedList
 
Nested classes inherited from class java.util.AbstractList
 
Field Summary
(package private)  Cast cast
           
 
Fields inherited from class java.util.LinkedList
 
Fields inherited from class java.util.AbstractList
modCount
 
Constructor Summary
TypedLinkedList()
           
TypedLinkedList(Cast cast)
           
TypedLinkedList(java.util.Collection c)
           
TypedLinkedList(java.util.Collection c, Cast cast)
           
 
Method Summary
 void addFirst(java.lang.Object o)
          Insert an element at the first of the list.
 void addLast(java.lang.Object o)
          Insert an element at the last of the list.
 Cast getCast()
           
 java.util.ListIterator listIterator(int index)
          Obtain a ListIterator over this list, starting at a given index.
 
Methods inherited from class java.util.LinkedList
add, add, addAll, addAll, clear, clone, contains, get, getFirst, getLast, indexOf, lastIndexOf, remove, remove, removeFirst, removeLast, set, size, toArray, toArray
 
Methods inherited from class java.util.AbstractSequentialList
iterator
 
Methods inherited from class java.util.AbstractList
equals, hashCode, listIterator, removeRange, subList
 
Methods inherited from class java.util.AbstractCollection
containsAll, isEmpty, removeAll, retainAll, toString
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 
Methods inherited from interface java.util.List
containsAll, equals, hashCode, isEmpty, iterator, listIterator, removeAll, retainAll, subList
 

Field Detail

cast

Cast cast
Constructor Detail

TypedLinkedList

public TypedLinkedList()

TypedLinkedList

public TypedLinkedList(java.util.Collection c)

TypedLinkedList

public TypedLinkedList(Cast cast)

TypedLinkedList

public TypedLinkedList(java.util.Collection c,
                       Cast cast)
Method Detail

getCast

public Cast getCast()

addFirst

public void addFirst(java.lang.Object o)
Description copied from class: java.util.LinkedList
Insert an element at the first of the list.


addLast

public void addLast(java.lang.Object o)
Description copied from class: java.util.LinkedList
Insert an element at the last of the list.


listIterator

public java.util.ListIterator listIterator(int index)
Description copied from class: java.util.LinkedList
Obtain a ListIterator over this list, starting at a given index. The ListIterator returned by this method supports the add, remove and set methods.