1 /*
   2  * Copyright (c) 2016, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.
   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 /*
  25  * @test
  26  * @bug 8170387
  27  * @summary JLightweightFrame#syncCopyBuffer() may throw IOOBE
  28  * @modules java.desktop/sun.swing
  29  * @run main JLightweightFrameRoundTest
  30  */
  31 
  32 import sun.swing.JLightweightFrame;
  33 import sun.swing.LightweightContent;
  34 
  35 import javax.swing.*;
  36 
  37 public class JLightweightFrameRoundTest {
  38     public static void main(String[] args) throws Exception {
  39         SwingUtilities.invokeAndWait(() -> {
  40             JLightweightFrame jLightweightFrame = new JLightweightFrame();
  41             jLightweightFrame.setContent(new XLightweightContent());
  42             jLightweightFrame.setSize(600, 600);
  43             jLightweightFrame.notifyDisplayChanged(1.0001, 1.0001);
  44         });
  45     }
  46 
  47     static class XLightweightContent implements LightweightContent {
  48         @Override
  49         public JComponent getComponent() {
  50             return new JPanel();
  51         }
  52 
  53         @Override
  54         public void paintLock() {}
  55 
  56         @Override
  57         public void paintUnlock() {}
  58 
  59         @Override
  60         public void imageBufferReset(int[] data, int x, int y, int width,
  61                                      int height, int linestride,
  62                                      double scaleX,
  63                                      double scaleY) {}
  64 
  65         @Override
  66         public void imageReshaped(int x, int y, int width, int height) {}
  67 
  68         @Override
  69         public void imageUpdated(int dirtyX, int dirtyY, int dirtyWidth,
  70                                  int dirtyHeight) {}
  71 
  72         @Override
  73         public void focusGrabbed() {}
  74 
  75         @Override
  76         public void focusUngrabbed() {}
  77 
  78         @Override
  79         public void preferredSizeChanged(int width, int height) {}
  80 
  81         @Override
  82         public void maximumSizeChanged(int width, int height) {}
  83 
  84         @Override
  85         public void minimumSizeChanged(int width, int height) {}
  86     }
  87 }