All Packages Class Hierarchy This Package Previous Next Index
Class java.awt.swing.plaf.ComboBoxUI
java.lang.Object
|
+----java.awt.swing.plaf.ComponentUI
|
+----java.awt.swing.plaf.ComboBoxUI
- public abstract class ComboBoxUI
- extends ComponentUI
Pluggable look and feel interface for JComboBox.
ComboBoxUI()
-
editablePropertyChanged()
- This method is called when the editable property changes.
enablePropertyChanged()
- This method is called when the enabled property changes
getList()
- This method asks the UI for the JList is using to display the
contents of the ComboBox.
hidePopup()
- This method request the UI to hide the popup
maximumRowCountChanged()
- This method is called when the maximum number of rows is changing
showPopup()
- This method request the UI to show the popup
ComboBoxUI
public ComboBoxUI()
maximumRowCountChanged
public abstract void maximumRowCountChanged()
- This method is called when the maximum number of rows is changing
editablePropertyChanged
public abstract void editablePropertyChanged()
- This method is called when the editable property changes.
enablePropertyChanged
public abstract void enablePropertyChanged()
- This method is called when the enabled property changes
showPopup
public abstract void showPopup()
- This method request the UI to show the popup
hidePopup
public abstract void hidePopup()
- This method request the UI to hide the popup
getList
public abstract JList getList()
- This method asks the UI for the JList is using to display the
contents of the ComboBox. The return value is meant to be used
for read-only values -- any modification to the JList is
unsupported.
All Packages Class Hierarchy This Package Previous Next Index
Submit a bug or feature