| 
JavaTM 2 Platform Standard Edition  | 
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Object
  |
  +--javax.swing.AbstractListModel
        |
        +--javax.swing.DefaultComboBoxModel
The default model for combo boxes.
| Fields inherited from class javax.swing.AbstractListModel | 
listenerList | 
| Constructor Summary | |
DefaultComboBoxModel()
Constructs an empty DefaultComboBoxModel object.  | 
|
DefaultComboBoxModel(Object[] items)
Constructs a DefaultComboBoxModel object initialized with an array of objects.  | 
|
DefaultComboBoxModel(Vector v)
Constructs a DefaultComboBoxModel object initialized with a vector.  | 
|
| Method Summary | |
 void | 
addElement(Object anObject)
Adds an item to the end of the model.  | 
 Object | 
getElementAt(int index)
Returns the value at the specified index.  | 
 int | 
getIndexOf(Object anObject)
Returns the index-position of the specified object in the list.  | 
 Object | 
getSelectedItem()
Return the selected item  | 
 int | 
getSize()
Returns the length of the list.  | 
 void | 
insertElementAt(Object anObject,
                int index)
Adds an item at a specific index  | 
 void | 
removeAllElements()
Empties the list.  | 
 void | 
removeElement(Object anObject)
Adds an item to the end of the model.  | 
 void | 
removeElementAt(int index)
Removes an item at a specific index  | 
 void | 
setSelectedItem(Object anObject)
Set the selected item  | 
| Methods inherited from class javax.swing.AbstractListModel | 
addListDataListener, 
fireContentsChanged, 
fireIntervalAdded, 
fireIntervalRemoved, 
removeListDataListener | 
| Methods inherited from class java.lang.Object | 
clone, 
equals, 
finalize, 
getClass, 
hashCode, 
notify, 
notifyAll, 
toString, 
wait, 
wait, 
wait | 
| Constructor Detail | 
public DefaultComboBoxModel()
public DefaultComboBoxModel(Object[] items)
items - an array of Object objectspublic DefaultComboBoxModel(Vector v)
v - a Vector object ...| Method Detail | 
public void setSelectedItem(Object anObject)
public Object getSelectedItem()
public int getSize()
public Object getElementAt(int index)
public int getIndexOf(Object anObject)
anObject -  public void addElement(Object anObject)
public void insertElementAt(Object anObject,
                            int index)
public void removeElementAt(int index)
public void removeElement(Object anObject)
public void removeAllElements()
  | 
JavaTM 2 Platform Standard Edition  | 
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||