public interface BuiltCombo<T>
An object containing a JComboBox and surrounding support components. The panel containing all these components are retrieved via getGUI()
A BuiltCombo is built by a ComboBuilder.
T is the type of objects in the combo.
| Modifier and Type | Method and Description | 
|---|---|
javax.swing.JComponent | 
getGUI()  | 
javax.swing.JComboBox | 
getJComboBox()  | 
java.util.List<T> | 
getListModel()
Return the model used in the JComboBox as a java.util.List. 
 | 
T | 
getSelectedValue()  | 
javax.swing.JComboBox getJComboBox()
javax.swing.JComponent getGUI()
java.util.List<T> getListModel()
Note: this does not work for checkable combos, or that contain additional Fixed items. For fixed combos this method will currently return null.
T getSelectedValue()