org.sablecc.php4.node
Class TypedLinkedList

Object
  extended byAbstractCollection
      extended byAbstractList
          extended byAbstractSequentialList
              extended byLinkedList
                  extended byorg.sablecc.php4.node.TypedLinkedList
All Implemented Interfaces:
Cloneable, Collection, List, Serializable

public class TypedLinkedList
extends LinkedList

See Also:
Serialized Form

Field Summary
 
Fields inherited from class AbstractList
modCount
 
Constructor Summary
TypedLinkedList()
           
TypedLinkedList(Cast cast)
           
TypedLinkedList(Collection c)
           
TypedLinkedList(Collection c, Cast cast)
           
 
Method Summary
 void add(int index, Object element)
           
 boolean add(Object o)
           
 boolean addAll(Collection c)
           
 boolean addAll(int index, Collection c)
           
 void addFirst(Object o)
           
 void addLast(Object o)
           
 Cast getCast()
           
 ListIterator listIterator(int index)
           
 Object set(int index, Object o)
           
 
Methods inherited from class LinkedList
clear, clone, contains, get, getFirst, getLast, indexOf, lastIndexOf, remove, remove, removeFirst, removeLast, size, toArray, toArray
 
Methods inherited from class AbstractSequentialList
iterator
 
Methods inherited from class AbstractList
equals, hashCode, listIterator, removeRange, subList
 
Methods inherited from class AbstractCollection
containsAll, isEmpty, removeAll, retainAll, toString
 
Methods inherited from class Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 
Methods inherited from interface List
containsAll, equals, hashCode, isEmpty, iterator, listIterator, removeAll, retainAll, subList
 

Constructor Detail

TypedLinkedList

public TypedLinkedList()

TypedLinkedList

public TypedLinkedList(Collection c)

TypedLinkedList

public TypedLinkedList(Cast cast)

TypedLinkedList

public TypedLinkedList(Collection c,
                       Cast cast)
Method Detail

getCast

public Cast getCast()

add

public void add(int index,
                Object element)

add

public boolean add(Object o)

addAll

public boolean addAll(Collection c)

addAll

public boolean addAll(int index,
                      Collection c)

addFirst

public void addFirst(Object o)

addLast

public void addLast(Object o)

set

public Object set(int index,
                  Object o)

listIterator

public ListIterator listIterator(int index)