| Package | Description |
|---|---|
| javax.swing |
Provides a set of "lightweight" (all-Java language) components that, to the maximum degree possible, work the same on all platforms.
|
| javax.swing.plaf |
Provides one interface and many abstract classes that Swing uses to provide its pluggable look-and-feel capabilities.
|
| javax.swing.plaf.basic |
Provides user interface objects built according to the Basic look and feel.
|
| javax.swing.plaf.metal |
Provides user interface objects built according to the Java look and feel (once codenamed
Metal), which is the default look and feel.
|
| javax.swing.plaf.multi |
Provides user interface objects that combine two or more look and feels.
|
| Constructor and Description | |
|---|---|
DefaultCellEditor(JComboBox
Constructs a
DefaultCellEditor object that uses a combo box.
|
| Modifier and Type | Method and Description |
|---|---|
abstract boolean |
ComboBoxUI.isFocusTraversable(JComboBox
Determine whether or not the combo box itself is traversable
|
abstract boolean |
ComboBoxUI.isPopupVisible(JComboBox
Determine the visibility of the popup
|
abstract void |
ComboBoxUI.setPopupVisible(JComboBox
Set the visibility of the popup
|
| Modifier and Type | Field and Description |
|---|---|
protected JComboBox |
BasicComboPopup.comboBox
|
protected JComboBox |
BasicComboBoxUI.comboBox
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
BasicComboBoxUI.isFocusTraversable(JComboBox
Determines if the JComboBox is focus traversable.
|
boolean |
BasicComboBoxUI.isPopupVisible(JComboBox
Tells if the popup is visible or not.
|
void |
BasicComboBoxUI.setPopupVisible(JComboBox
Hides the popup.
|
| Constructor and Description | |
|---|---|
BasicComboPopup(JComboBox
|
| Modifier and Type | Field and Description |
|---|---|
protected JComboBox |
MetalComboBoxButton.comboBox
|
| Modifier and Type | Method and Description |
|---|---|
JComboBox |
MetalComboBoxButton.getComboBox()
|
| Modifier and Type | Method and Description |
|---|---|
void |
MetalComboBoxButton.setComboBox(JComboBox
|
| Constructor and Description | |
|---|---|
MetalComboBoxButton(JComboBox
|
|
MetalComboBoxButton(JComboBox
|
|
MetalComboPopup(JComboBox
Deprecated.
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
MultiComboBoxUI.isFocusTraversable(JComboBox
Invokes the
isFocusTraversable method on each UI handled by this object.
|
boolean |
MultiComboBoxUI.isPopupVisible(JComboBox
Invokes the
isPopupVisible method on each UI handled by this object.
|
void |
MultiComboBoxUI.setPopupVisible(JComboBox
Invokes the
setPopupVisible method on each UI handled by this object.
|