Searched defs:isPopupVisible (Results 1 - 4 of 4) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/swing/plaf/
H A DComboBoxUI.java46 public abstract boolean isPopupVisible( JComboBox c ); method in class:ComboBoxUI
/openjdk7/jdk/src/share/classes/javax/swing/plaf/multi/
H A DMultiComboBoxUI.java95 * Invokes the <code>isPopupVisible</code> method on each UI handled by this object.
100 public boolean isPopupVisible(JComboBox a) { method in class:MultiComboBoxUI
102 ((ComboBoxUI) (uis.elementAt(0))).isPopupVisible(a);
104 ((ComboBoxUI) (uis.elementAt(i))).isPopupVisible(a);
/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/
H A DBasicComboBoxUI.java869 public boolean isPopupVisible( JComboBox c ) { method in class:BasicComboBoxUI
1112 if ( comboBox.isPopupVisible() ) {
1123 if (!(UIManager.getBoolean("ComboBox.noActionOnKeyNavigation") && comboBox.isPopupVisible())) {
1138 if ( comboBox.isPopupVisible() ) {
1149 if (!(UIManager.getBoolean("ComboBox.noActionOnKeyNavigation") && comboBox.isPopupVisible())) {
1161 setPopupVisible(comboBox, !isPopupVisible(comboBox));
1210 if ( hasFocus && !isPopupVisible(comboBox) ) {
1226 if ( hasFocus && !isPopupVisible(comboBox) ) {
1497 if (UIManager.getBoolean("ComboBox.noActionOnKeyNavigation") && comboBox.isPopupVisible()) {
1508 if ( comboBox.isPopupVisible() ) {
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/
H A DJComboBox.java826 public boolean isPopupVisible() { method in class:JComboBox
827 return getUI().isPopupVisible(this);
1835 if (JComboBox.this.isPopupVisible()) {
1887 setPopupVisible(!isPopupVisible());

Completed in 260 milliseconds