javax.swing.plaf.basic
Interface ComboPopup

All Known Implementing Classes:
BasicComboPopup, MetalComboBoxUI.MetalComboPopup

public interface ComboPopup


Method Summary
 KeyListener getKeyListener()
          This method returns KeyListener that listen's to key events occuring in the combo box.
 JList getList()
          Return JList that is used to draw cells of the JComboBox.
 MouseListener getMouseListener()
          This method returns MouseListener that listen's to mouse events occuring in the combo box
 MouseMotionListener getMouseMotionListener()
          This method returns MouseListener that listen's to mouse events occuring in the combo box.
 void hide()
          This method hides popup menu with list of JComboBox's item from the screen
 boolean isVisible()
          Retursn true if popup menu with JComboBOx's item is currently visible on the screen and false otherwise
 void show()
          This method display popup menu containing list of JComboBox's items to the screen
 void uninstallingUI()
           
 

Method Detail

show

void show()
This method display popup menu containing list of JComboBox's items to the screen


hide

void hide()
This method hides popup menu with list of JComboBox's item from the screen


isVisible

boolean isVisible()
Retursn true if popup menu with JComboBOx's item is currently visible on the screen and false otherwise

Returns:
true if JComboBox's popup menu with list of items is currently visible on the screen and false otherwise.

getList

JList getList()
Return JList that is used to draw cells of the JComboBox.

Returns:
JList that is used to draw cells of the JcomboBox

getMouseListener

MouseListener getMouseListener()
This method returns MouseListener that listen's to mouse events occuring in the combo box

Returns:
MouseListenere

getMouseMotionListener

MouseMotionListener getMouseMotionListener()
This method returns MouseListener that listen's to mouse events occuring in the combo box.

Returns:
MouseMotionListener

getKeyListener

KeyListener getKeyListener()
This method returns KeyListener that listen's to key events occuring in the combo box.

Returns:
KeyListener

uninstallingUI

void uninstallingUI()