FileDocCategorySizeDatePackage
ComboPopup.javaAPI DocJava SE 6 API2614Tue Jun 10 00:26:48 BST 2008javax.swing.plaf.basic

ComboPopup

public interface ComboPopup
The interface which defines the methods required for the implementation of the popup portion of a combo box.

Warning: Serialized objects of this class will not be compatible with future Swing releases. The current serialization support is appropriate for short term storage or RMI between applications running the same version of Swing. As of 1.4, support for long term storage of all JavaBeansTM has been added to the java.beans package. Please see {@link java.beans.XMLEncoder}.

version
1.17 11/17/05
author
Tom Santos

Fields Summary
Constructors Summary
Methods Summary
public java.awt.event.KeyListenergetKeyListener()
Returns a key listener that will be added to the combo box or null. If this method returns null then it will not be added to the combo box.

public javax.swing.JListgetList()
Returns the list that is being used to draw the items in the combo box. This method is highly implementation specific and should not be used for general list manipulation.

public java.awt.event.MouseListenergetMouseListener()
Returns a mouse listener that will be added to the combo box or null. If this method returns null then it will not be added to the combo box.

return
a MouseListener or null

public java.awt.event.MouseMotionListenergetMouseMotionListener()
Returns a mouse motion listener that will be added to the combo box or null. If this method returns null then it will not be added to the combo box.

return
a MouseMotionListener or null

public voidhide()
Hides the popup

public booleanisVisible()
Returns true if the popup is visible (currently being displayed).

return
true if the component is visible; false otherwise.

public voidshow()
Shows the popup

public voiduninstallingUI()
Called to inform the ComboPopup that the UI is uninstalling. If the ComboPopup added any listeners in the component, it should remove them here.