-
Bug
-
Resolution: Fixed
-
P3
-
1.3.0
-
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
======================================================================