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

The insets of TitledBorder vary, will be modified by another method, in JDK7

XMLWordPrintable

    • b102
    • 7
    • b140
    • x86
    • windows_7
    • Verified

      FULL PRODUCT VERSION :
      java version "1.7.0-ea"
      Java(TM) SE Runtime Environment (build 1.7.0-ea-b136)
      Java HotSpot(TM) Client VM (build 21.0-b06, mixed mode, sharing)


      A DESCRIPTION OF THE PROBLEM :
      The insets of a TitledBorder will be modified by another method.


      REGRESSION. Last worked in version 6u24

      STEPS TO FOLLOW TO REPRODUCE THE PROBLEM :
      Execute the test case below and resize the window.


      EXPECTED VERSUS ACTUAL BEHAVIOR :
      EXPECTED -
      The insets should stay unchanged.

      ACTUAL -
      The insets vary.


      REPRODUCIBILITY :
      This bug can be reproduced always.

      ---------- BEGIN SOURCE ----------
      import java.awt.Component;
      import java.awt.Dimension;
      import java.awt.EventQueue;
      import java.awt.Graphics;
      import java.awt.Insets;

      import javax.swing.JFrame;
      import javax.swing.JLabel;
      import javax.swing.JPanel;
      import javax.swing.UIManager;
      import javax.swing.border.Border;
      import javax.swing.border.TitledBorder;

      public class TitledBorderInsetsTest extends JFrame
      {
        public static void main(String[] args)
        {
          EventQueue.invokeLater(new Runnable(){
            public void run()
            {
              try
              {
                UIManager.put("TitledBorder.border", new MyTitledBorder());
                new TitledBorderInsetsTest();
              }
              catch (Exception e)
              {
                e.printStackTrace();
              }
            }
          });
        }

        public TitledBorderInsetsTest() throws Exception
        {
          JPanel p = new JPanel();
          p.setBorder(new TitledBorder("Foo"));
          p.add(new JLabel("Label"));
          add(p);
          
          setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
          setSize(new Dimension(600, 300));
          setLocationRelativeTo(null);
          setVisible(true);
        }
        
        public static class MyTitledBorder implements Border
        {
          private Insets insets = new Insets(20,20,20,20);
          
          @Override
          public void paintBorder(Component c, Graphics g, int x, int y, int width, int height)
          {
            System.err.println(insets);
          }

          @Override
          public Insets getBorderInsets(Component c)
          {
            return insets;
          }

          @Override
          public boolean isBorderOpaque()
          {
            return false;
          }
        }
      }

      ---------- END SOURCE ----------

            malenkov Sergey Malenkov (Inactive)
            webbuggrp Webbug Group
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: