All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class com.sun.java.swing.plaf.ComboBoxUI

java.lang.Object
   |
   +----com.sun.java.swing.plaf.ComponentUI
           |
           +----com.sun.java.swing.plaf.ComboBoxUI

public abstract class ComboBoxUI
extends ComponentUI
Pluggable look and feel interface for JComboBox.


Constructor Index

 o ComboBoxUI()

Method Index

 o editablePropertyChanged()
This method is called when the editable property changes.
 o enablePropertyChanged()
This method is called when the enabled property changes
 o getList()
This method asks the UI for the JList is using to display the contents of the ComboBox.
 o hidePopup()
This method request the UI to hide the popup
 o maximumRowCountChanged()
This method is called when the maximum number of rows is changing
 o showPopup()
This method request the UI to show the popup

Constructors

 o ComboBoxUI
 public ComboBoxUI()

Methods

 o maximumRowCountChanged
 public abstract void maximumRowCountChanged()
This method is called when the maximum number of rows is changing

 o editablePropertyChanged
 public abstract void editablePropertyChanged()
This method is called when the editable property changes.

 o enablePropertyChanged
 public abstract void enablePropertyChanged()
This method is called when the enabled property changes

 o showPopup
 public abstract void showPopup()
This method request the UI to show the popup

 o hidePopup
 public abstract void hidePopup()
This method request the UI to hide the popup

 o 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