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

javax.swing.JCheckBox.setBorderPaintedFlat works incorrectly

XMLWordPrintable

    • beta
    • x86
    • linux
    • Verified



      Name: skR10017 Date: 05/23/2000



      The method JCheckBox.setBorderPaintedFlat() contains a bug.
      Here is citation from the source file:

      ------------------ src/javax/swing/JCheckBox.java --------------------

           public void setBorderPaintedFlat(boolean b) {
               flat = b; // <--------- the old flat value is overwritten and lost
               boolean oldValue = flat;
               flat = b;
               firePropertyChange(BORDER_PAINTED_FLAT_CHANGED_PROPERTY, oldValue, flat);
               if (b != oldValue) {
                   revalidate();
                   repaint();
               }
           }

      -----------------------------------------------------------------------

      because of this bug the oldValue is always equal to the current value. It leads to
      failure of BeanCounter test from Swing testsuite.


      Suggestion fix:
      To remove first line "flat = b;" in javax/swing/JCheckBox.java

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

            jeff Jeff Dinkins
            kotlsunw Kotl Kotl (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            3 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: