< prev index next >

test/java/awt/Frame/MiscUndecorated/FrameCloseTest.java

Print this page
rev 14989 : 8160974: [TESTBUG] Mark more headful tests with @key headful.


   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 * @summary To make sure Undecorated Frame triggers correct windows events while closing
  27 * @author Jitender(jitender.singh@eng.sun.com) area=AWT*
  28 * @author yan
  29 * @library ../../../../lib/testlibrary
  30 * @build ExtendedRobot
  31 * @run main FrameCloseTest
  32 */

  33 
  34 import java.awt.*;
  35 import java.awt.event.*;
  36 import javax.swing.JFrame;
  37 import javax.swing.JButton;
  38 
  39 public class FrameCloseTest {
  40     private static int delay = 150;
  41 
  42     private Frame frame, frame2;
  43     private Component button, dummyButton;
  44     private int eventType, eventType1, eventType2;
  45     private ExtendedRobot robot;
  46     private Object lock1 = new Object();
  47     private Object lock2 = new Object();
  48     private Object lock3 = new Object();
  49     private Object lock4 = new Object();
  50     private boolean passed = true;
  51 
  52     public static void main(String[] args) {




   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  * @key headful
  27  * @summary To make sure Undecorated Frame triggers correct windows events while closing
  28  * @author Jitender(jitender.singh@eng.sun.com) area=AWT*
  29  * @author yan
  30  * @library ../../../../lib/testlibrary
  31  * @build ExtendedRobot
  32  * @run main FrameCloseTest
  33  */
  34 
  35 import java.awt.*;
  36 import java.awt.event.*;
  37 import javax.swing.JFrame;
  38 import javax.swing.JButton;
  39 
  40 public class FrameCloseTest {
  41     private static int delay = 150;
  42 
  43     private Frame frame, frame2;
  44     private Component button, dummyButton;
  45     private int eventType, eventType1, eventType2;
  46     private ExtendedRobot robot;
  47     private Object lock1 = new Object();
  48     private Object lock2 = new Object();
  49     private Object lock3 = new Object();
  50     private Object lock4 = new Object();
  51     private boolean passed = true;
  52 
  53     public static void main(String[] args) {


< prev index next >