antlr.collections

Interface List

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 Details

add

public void add(Object o)

append

public void append(Object o)

elementAt

public Object elementAt(int index)
            throws NoSuchElementException

elements

public Enumeration elements()

includes

public boolean includes(Object o)

length

public int length()