List of usage examples for javax.swing JComboBox firePopupMenuCanceled
public void firePopupMenuCanceled()
PopupMenuListener
s that the popup portion of the combo box has been canceled. 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);/* w w w .j a v a2s. com*/ jc.firePopupMenuCanceled(); }