< prev index next >

test/java/awt/Mixing/AWT_Mixing/JInternalFrameMoveOverlapping.java

Print this page


   1 /*
   2  * Copyright (c) 2014, 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  */


  25 import java.awt.Robot;
  26 import java.awt.event.InputEvent;
  27 import java.awt.event.MouseAdapter;
  28 import java.awt.event.MouseEvent;
  29 import javax.swing.JButton;
  30 import javax.swing.JDesktopPane;
  31 import javax.swing.JFrame;
  32 import javax.swing.JInternalFrame;
  33 import test.java.awt.regtesthelpers.Util;
  34 
  35 /**
  36  * AWT/Swing overlapping test for {@link javax.swing.JInternalFrame } component during move.
  37  * <p>See <a href="http://monaco.sfbay.sun.com/detail.jsf?cr=6985399">CR6768230</a> for details and base class for test info.
  38  */
  39 /*
  40 @test
  41 @bug 6985399
  42 @summary Overlapping test for javax.swing.JScrollPane
  43 @author sergey.grinev@oracle.com: area=awt.mixing
  44 @library ../../regtesthelpers


  45 @build Util
  46 @run main JInternalFrameMoveOverlapping
  47  */
  48 public class JInternalFrameMoveOverlapping extends OverlappingTestBase {
  49 
  50     private boolean lwClicked = true;
  51     private Point locTopFrame;
  52     private Point locTarget;
  53 
  54     protected boolean performTest() {
  55         // run robot
  56         Robot robot = Util.createRobot();
  57         robot.setAutoDelay(ROBOT_DELAY);
  58 
  59         robot.mouseMove(locTopFrame.x + 25, locTopFrame.y + 25);
  60         robot.mousePress(InputEvent.BUTTON1_MASK);
  61         try {
  62             Thread.sleep(500);
  63         } catch (InterruptedException ex) {
  64         }


   1 /*
   2  * Copyright (c) 2014, 2015, 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  */


  25 import java.awt.Robot;
  26 import java.awt.event.InputEvent;
  27 import java.awt.event.MouseAdapter;
  28 import java.awt.event.MouseEvent;
  29 import javax.swing.JButton;
  30 import javax.swing.JDesktopPane;
  31 import javax.swing.JFrame;
  32 import javax.swing.JInternalFrame;
  33 import test.java.awt.regtesthelpers.Util;
  34 
  35 /**
  36  * AWT/Swing overlapping test for {@link javax.swing.JInternalFrame } component during move.
  37  * <p>See <a href="http://monaco.sfbay.sun.com/detail.jsf?cr=6985399">CR6768230</a> for details and base class for test info.
  38  */
  39 /*
  40 @test
  41 @bug 6985399
  42 @summary Overlapping test for javax.swing.JScrollPane
  43 @author sergey.grinev@oracle.com: area=awt.mixing
  44 @library ../../regtesthelpers
  45 @modules java.desktop/java.awt.peer
  46          java.desktop/sun.awt
  47 @build Util
  48 @run main JInternalFrameMoveOverlapping
  49  */
  50 public class JInternalFrameMoveOverlapping extends OverlappingTestBase {
  51 
  52     private boolean lwClicked = true;
  53     private Point locTopFrame;
  54     private Point locTarget;
  55 
  56     protected boolean performTest() {
  57         // run robot
  58         Robot robot = Util.createRobot();
  59         robot.setAutoDelay(ROBOT_DELAY);
  60 
  61         robot.mouseMove(locTopFrame.x + 25, locTopFrame.y + 25);
  62         robot.mousePress(InputEvent.BUTTON1_MASK);
  63         try {
  64             Thread.sleep(500);
  65         } catch (InterruptedException ex) {
  66         }


< prev index next >