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

void add(Object o)

append

void append(Object o)

elementAt

Object elementAt(int index)
                 throws NoSuchElementException
Throws:
NoSuchElementException

elements

Enumeration elements()

includes

boolean includes(Object o)

length

int length()