1public interface AwtList { 2 3 public void add(String s); 4 5 public void remove(String s); 6 7 public String[] getSelectedItems(); 8 9}