Spec-Zone .ru
спецификации, руководства, описания, API
Please note that the specifications and other information contained herein are not final and are subject to change. The information is being made available to you solely for purpose of evaluation.

Java™ Platform
Standard Ed. 7

DRAFT ea-b118

javax.swing
Interface MutableComboBoxModel

All Superinterfaces:
ComboBoxModel, ListModel
All Known Implementing Classes:
DefaultComboBoxModel

public interface MutableComboBoxModel
extends ComboBoxModel

A mutable version of ComboBoxModel.


Method Summary
Modifier and Type Method and Description
 void addElement(Object obj)
          Adds an item at the end of the model.
 void insertElementAt(Object obj, int index)
          Adds an item at a specific index.
 void removeElement(Object obj)
          Removes an item from the model.
 void removeElementAt(int index)
          Removes an item at a specific index.
 
Methods inherited from interface javax.swing.ComboBoxModel
getSelectedItem, setSelectedItem
 
Methods inherited from interface javax.swing.ListModel
addListDataListener, getElementAt, getSize, removeListDataListener
 

Method Detail

addElement

void addElement(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.

Parameters:
obj - the Object to be added

removeElement

void removeElement(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.

Parameters:
obj - the Object to be removed

insertElementAt

void insertElementAt(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.

Parameters:
obj - the Object to be added
index - location to add the object

removeElementAt

void removeElementAt(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.

Parameters:
index - location of object to be removed

Java™ Platform
Standard Ed. 7

DRAFT ea-b118

Submit a bug or feature
For further API reference and developer documentation, see Java SE Documentation. That documentation contains more detailed, developer-targeted descriptions, with conceptual overviews, definitions of terms, workarounds, and working code examples.

Copyright © 1993, 2010, Oracle Corporation. All rights reserved.
DRAFT ea-b118

Scripting on this page tracks web page traffic, but does not change the content in any way.