antlr.collections

Interface List

public interface List

A simple List interface that describes operations on a list.
Method Summary
voidadd(Object o)
voidappend(Object o)
ObjectelementAt(int index)
Enumerationelements()
booleanincludes(Object o)
intlength()

Method Detail

add

public void add(Object o)

append

public void append(Object o)

elementAt

public Object elementAt(int index)

elements

public Enumeration elements()

includes

public boolean includes(Object o)

length

public int length()