All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class term.Liste

java.lang.Object
   |
   +----term.Liste

public class Liste
extends Object
Implementation of a simple linked list. Allows fast appending of elements at the beginning and at the end of the list.


Constructor Index

 o Liste()
 o Liste(Liste. ListEl)

Method Index

 o addElement(Object)
 o addLast(Object)
 o clone()
 o copyListEl(Liste. ListEl)
generates a complete recursive copy of the element chain.
 o elementAt(int)
Returns the element with the given index or null if there is no element with that index.
 o elements()
Liefert eine Enumeration der Elemente dieser Liste.
 o firstEl()
 o getElementCopy()
Liefert eine Enumeration einer Kopie der Elemente dieser Liste.
 o isEmpty()
 o removeElement(Object)
 o removeFirst()
 o size()

Constructors

 o Liste
 protected Liste(Liste. ListEl newFirst)
 o Liste
 public Liste()

Methods

 o addElement
 public void addElement(Object E)
 o addLast
 public void addLast(Object E)
 o clone
 public Object clone()
Overrides:
clone in class Object
 o copyListEl
 protected Liste. ListEl copyListEl(Liste. ListEl toCopy)
generates a complete recursive copy of the element chain.

 o elementAt
 public Object elementAt(int index)
Returns the element with the given index or null if there is no element with that index.

 o elements
 public Enumeration elements()
Liefert eine Enumeration der Elemente dieser Liste. Keine Kopie !

 o firstEl
 public Object firstEl()
 o getElementCopy
 public Enumeration getElementCopy()
Liefert eine Enumeration einer Kopie der Elemente dieser Liste.

 o isEmpty
 public boolean isEmpty()
 o removeElement
 public Object removeElement(Object E)
 o removeFirst
 public Object removeFirst()
 o size
 public int size()

All Packages  Class Hierarchy  This Package  Previous  Next  Index