FileDocCategorySizeDatePackage
MutableComboBoxModel.javaAPI DocJava SE 5 API1678Fri Aug 26 14:57:58 BST 2005javax.swing

MutableComboBoxModel

public interface MutableComboBoxModel implements ComboBoxModel
A mutable version of ComboBoxModel.
version
1.12 12/19/03
author
Tom Santos

Fields Summary
Constructors Summary
Methods Summary
public voidaddElement(java.lang.Object obj)
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.

param
obj the Object to be added

public voidinsertElementAt(java.lang.Object obj, int index)
Adds an item at a specific index. The implementation of this method should notify all registered ListDataListeners that the item has been added.

param
obj the Object to be added
param
index location to add the object

public voidremoveElement(java.lang.Object obj)
Removes an item from the model. The implementation of this method should should notify all registered ListDataListeners that the item has been removed.

param
obj the Object to be removed

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

param
index location of object to be removed