-
Bug
-
Resolution: Not an Issue
-
P3
-
None
-
1.2.2
-
sparc
-
solaris_2.5.1
Name: aaC67449 Date: 01/22/99
JComboBox.setPopupVisible(false) doesn't hide its popup
javadoc states:
"public void setPopupVisible(boolean v)
Set the visiblity of the popup
"
See example.
--------------- Example---------------------------
import javax.swing.*;
import java.awt.*;
public class Test {
public static void main(String argv[]) {
JComboBox c = new JComboBox();
JFrame frame = new JFrame();
frame.getContentPane().add(c);
frame.setSize(100,100);
frame.setVisible(true);
c.showPopup();
c.setPopupVisible(false);
if(c.isPopupVisible())
System.out.println("FAILED");
else
System.out.println("OK");
}
}
----------------output------------------
FAILED
-------
And popup part of JComboBox is realy visible on the screen!
======================================================================