com.actelion.research.gui.generic.GenericComboBox Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openchemlib Show documentation
Show all versions of openchemlib Show documentation
Open Source Chemistry Library
package com.actelion.research.gui.generic;
public interface GenericComboBox extends GenericComponent {
void addItem(String item);
void removeAllItems();
int getSelectedIndex();
String getSelectedItem();
void setSelectedIndex(int index);
void setSelectedItem(String item);
void setEditable(boolean b);
}