public interface List { E get(int pos); int size(); void add(E element, int pos); void remove(int pos); boolean remove(E element); }