Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-4096605

JCheckBoxMenuItem ctor does not set icon properly

XMLWordPrintable

    • 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


      ======================================================================

            gsaab Georges Saab
            asemidetsunw Alexei Semidetnov (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: