Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Uses of Interface
javax.swing.ComboBoxModel

Uses of ComboBoxModel in javax.swing
 

Subinterfaces of ComboBoxModel in javax.swing
 interface MutableComboBoxModel
          A data model used in JComboBoxes that keeps track of the components data and provides methods to insert and remove elements from it.
 

Classes in javax.swing that implement ComboBoxModel
 class DefaultComboBoxModel
          A model that stores a list of elements and a selected item (which may be null).
 

Fields in javax.swing declared as ComboBoxModel
protected  ComboBoxModel JComboBox.dataModel
          Data model used by JComboBox to keep track of its list data and currently selected element in the list.
 

Methods in javax.swing that return ComboBoxModel
 ComboBoxModel JComboBox.getModel()
          This method returns data model for this comboBox.
 

Methods in javax.swing with parameters of type ComboBoxModel
 void JComboBox.setModel(ComboBoxModel newDataModel)
          Set the data model for this JComboBox.
 int JComboBox.KeySelectionManager.selectionForKey(char aKey, ComboBoxModel aModel)
           
 

Constructors in javax.swing with parameters of type ComboBoxModel
JComboBox(ComboBoxModel model)
          Constructs JComboBox object with specified data model for it.