// Allison Obourn // CSE 143 - lecture 13 // An ordered list of integers. // // This interface allows clients to write general methods that work // with any class that implements IntList // Read more about Java's List interface: // http://docs.oracle.com/javase/7/docs/api/java/util/List.html public interface IntList { public void add(int value); public void add(int value, int index); public void remove(int index); public int size(); public int get(int index); }