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

Wrong behavior of JComponent.setDebugGraphicsOptions on 0 parameter

XMLWordPrintable

    • 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.

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

            apikalev Andrey Pikalev
            oovsunw Oov Oov (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: