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