-
Bug
-
Resolution: Fixed
-
P2
-
1.2.0
-
swing0.8
-
sparc
-
solaris_2.5
-
Verified
Name: asC58863 Date: 12/03/97
JCheckBoxMenuItem constructor does not create a checkboxMenuItem with an icon specified.
Here is the test demonstrating the bug:
------------------ Test.java -----------------
import java.awt.swing.*;
class Test {
public static void main(String[] argv) {
Icon icon = new ImageIcon("");
JCheckBoxMenuItem menuItem = new JCheckBoxMenuItem(icon);
if(menuItem.getIcon().equals(icon))
System.out.println(" OKAY ");
else
System.out.println(" FAILED ");
menuItem.setIcon(icon);
if(menuItem.getIcon().equals(icon))
System.out.println(" OKAY ");
else
System.out.println(" FAILED ");
System.exit(0);
}
}
----------- Output from the test ---------
FAILED
OKAY
======================================================================