javax.swing.plaf
public abstract class ComboBoxUI extends ComponentUI
Constructor Summary | |
---|---|
ComboBoxUI()
Constructs a new ComboBoxUI . |
Method Summary | |
---|---|
abstract boolean | isFocusTraversable(JComboBox c)
Determines whether the combo box can receive input focus.
|
abstract boolean | isPopupVisible(JComboBox c)
Determines whether the popup button is currently visible.
|
abstract void | setPopupVisible(JComboBox c, boolean visible)
Sets the visibility of the popup button.
|
ComboBoxUI
.Parameters: c JComboBox
whose focus traversability
is to be retrieved.
Returns: true
if c
can receive
input focus, false
otherwise.
Parameters: c the JComboBox
whose popup visibility
is retrieved.
Returns: true
if the popup button is currently
visible, false
otherwise.
Parameters: c the JComboBox
whose popup
is shown or hidden.
visible true
to show the popup, false
to hide it.