antlr.collections
Interface List

All Known Implementing Classes:
LList

public interface List

A simple List interface that describes operations on a list.


Method Summary
 void add(Object o)
           
 void append(Object o)
           
 Object elementAt(int index)
           
 Enumeration elements()
           
 boolean includes(Object o)
           
 int length()
           
 

Method Detail

add

public void add(Object o)

append

public void append(Object o)

elementAt

public Object elementAt(int index)
                 throws NoSuchElementException
NoSuchElementException

elements

public Enumeration elements()

includes

public boolean includes(Object o)

length

public int length()


Copyright © 1999-2003 Oliver Zeigermann. All Rights Reserved.