ComboBox<V> |
ComboBox.addItem(int index,
V item) |
Adds a new item to the combo box, at a specific index
|
ComboBox<V> |
ComboBox.addItem(V item) |
Adds a new item to the combo box, at the end
|
ComboBox<V> |
ComboBox.addListener(ComboBox.Listener listener) |
Adds a new listener to the ComboBox that will be called on certain user actions
|
ComboBox<V> |
ComboBox.clearItems() |
Removes all items from the combo box
|
ComboBox<V> |
ComboBox.removeItem(int index) |
Removes an item from the combo box at a particular index
|
ComboBox<V> |
ComboBox.removeItem(V item) |
Removes a particular item from the combo box, if it is present, otherwise does nothing
|
ComboBox<V> |
ComboBox.removeListener(ComboBox.Listener listener) |
Removes a listener from this ComboBox so that if it had been added earlier, it will no longer be
called on user actions
|
ComboBox<V> |
ComboBox.setItem(int index,
V item) |
Updates the combo box so the item at the specified index is swapped out with the supplied value in the
item parameter
|
ComboBox<V> |
ComboBox.setReadOnly(boolean readOnly) |
Sets the combo box to either read-only or writable.
|