-
Bug
-
Resolution: Fixed
-
P4
-
1.4.0
-
tiger
-
sparc
-
solaris_2.6
Name: ooR10001 Date: 03/20/2001
Behavior of the javax.swing.JComponent.setDebugGraphicsOptions(int) is wrong
when 0 parameter is passed because debugging options are changed in this case
but javadoc says another:
-----------------------------------------
setDebugGraphicsOptions
public void setDebugGraphicsOptions(int debugOptions)
.............................
A value of 0 causes no changes to the debugging options.
------------------------------------------
THis is a test which shows the bug:
-------------------------
import javax.swing.JComponent;
import javax.swing.JPanel;
import javax.swing.DebugGraphics;
public class test {
public static void main(String[] args) {
JComponent c = new JPanel();
c.setDebugGraphicsOptions(DebugGraphics.FLASH_OPTION);
int dg = c.getDebugGraphicsOptions();
c.setDebugGraphicsOptions(0);
if (dg != c.getDebugGraphicsOptions()) {
System.out.println("Debug options are changed");
}
}
}
-------------------------
Output:
----------------
Debug options are changed
----------------
It needs to be fixed.
======================================================================