Liking cljdoc? Tell your friends :D

javax.swing.MutableComboBoxModel

A mutable version of ComboBoxModel.

A mutable version of ComboBoxModel.
raw docstring

add-elementclj

(add-element this item)

Adds an item at the end of the model. The implementation of this method should notify all registered ListDataListeners that the item has been added.

item - the item to be added - E

Adds an item at the end of the model. The implementation of this method
 should notify all registered ListDataListeners that the
 item has been added.

item - the item to be added - `E`
raw docstring

insert-element-atclj

(insert-element-at this item index)

Adds an item at a specific index. The implementation of this method should notify all registered ListDataListeners that the item has been added.

item - the item to be added - E index - location to add the object - int

Adds an item at a specific index.  The implementation of this method
 should notify all registered ListDataListeners that the
 item has been added.

item - the item to be added - `E`
index - location to add the object - `int`
raw docstring

remove-elementclj

(remove-element this obj)

Removes an item from the model. The implementation of this method should should notify all registered ListDataListeners that the item has been removed.

obj - the Object to be removed - java.lang.Object

Removes an item from the model. The implementation of this method should
 should notify all registered ListDataListeners that the
 item has been removed.

obj - the Object to be removed - `java.lang.Object`
raw docstring

remove-element-atclj

(remove-element-at this index)

Removes an item at a specific index. The implementation of this method should notify all registered ListDataListeners that the item has been removed.

index - location of the item to be removed - int

Removes an item at a specific index. The implementation of this method
 should notify all registered ListDataListeners that the
 item has been removed.

index - location of the item to be removed - `int`
raw docstring

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close