1 package antlr.collections; 2 3 9 10 import java.util.Enumeration ; 11 import java.util.NoSuchElementException ; 12 13 16 public interface List { 17 public void add(Object o); 19 public void append(Object o); 20 21 public Object elementAt(int index) throws NoSuchElementException ; 22 23 public Enumeration elements(); 24 25 public boolean includes(Object o); 26 27 public int length(); 28 } 29 | Popular Tags |