List of usage examples for javax.swing JComboBox getPopupMenuListeners
@BeanProperty(bound = false)
public PopupMenuListener[] getPopupMenuListeners()
PopupMenuListener
s added to this JComboBox with addPopupMenuListener(). From source file:Main.java
public Main() { JComboBox jc = new JComboBox(); jc.addItem("France"); jc.addItem("Germany"); jc.addItem("Italy"); jc.addItem("Japan"); jc.addItemListener(this); add(jc);// ww w. j a va 2 s . c o m PopupMenuListener[] pop = jc.getPopupMenuListeners(); }