package jalview.appletgui; import javax.swing.JComboBox; public class Choice extends JComboBox { public void select(String annotation) { // ? correct? setSelectedItem(annotation); } public void select(int i) { setSelectedIndex(i); } }