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

Problem with painting in 1.6

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Not an Issue
    • Icon: P4 P4
    • None
    • 6
    • client-libs

      The following example painted with bad artifacts with 1.6
      works fine with 1.5

      tested on Windows XP

      import javax.swing.*;
      import java.awt.*;

      public class PaintTest extends JPanel {
          private JComponent view;

          public PaintTest(JComponent view) {
              this.view = view;
              view.setBorder(BorderFactory.createLineBorder(Color.red, 2));
              add(view);
          }

          protected void paintComponent(Graphics g) {
              Graphics2D g2 = (Graphics2D) g;
              view.paint(g2);
          }

          public static void main(String[] args) {
              JFrame frame = new JFrame("PaintTest test");
              frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

              PaintTest t = new PaintTest(new JPanel() {
                  protected void paintComponent(Graphics g) {
                      super.paintComponent(g);
                      g.setColor(Color.GREEN);
                      g.fillRect(0, 0, getWidth(), getHeight());
                  }

                  public Dimension getPreferredSize() {
                      return new Dimension(50, 50);
                  }
              });
              frame.add(t);
              frame.setSize(200, 200);
              frame.setVisible(true);
          }
      }

            Unassigned Unassigned
            alexp Alexander Potochkin (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            1 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: