< prev index next >

test/java/awt/Frame/MiscUndecorated/ActiveAWTWindowTest.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 check proper WINDOW_EVENTS are triggered when Frame gains or losses the focus
  27 * @author Jitender(jitender.singh@eng.sun.com) area=AWT
  28 * @author yan
  29 * @library ../../../../lib/testlibrary
  30 * @build ExtendedRobot
  31 * @run main ActiveAWTWindowTest
  32 */

  33 
  34 import java.awt.*;
  35 import java.awt.event.*;
  36 
  37 public class ActiveAWTWindowTest {
  38 
  39     private Frame frame, frame2;
  40     private Button button, button2;
  41     private TextField textField, textField2;
  42     private int eventType, eventType1;
  43     private ExtendedRobot robot;
  44     private Object lock1 = new Object();
  45     private Object lock2 = new Object();
  46     private Object lock3 = new Object();
  47     private boolean passed = true;
  48     private int delay = 150;
  49 
  50     public static void main(String[] args) {
  51         ActiveAWTWindowTest test = new ActiveAWTWindowTest();
  52         test.doTest();




   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 check proper WINDOW_EVENTS are triggered when Frame gains or losses the focus
  28  * @author Jitender(jitender.singh@eng.sun.com) area=AWT
  29  * @author yan
  30  * @library ../../../../lib/testlibrary
  31  * @build ExtendedRobot
  32  * @run main ActiveAWTWindowTest
  33  */
  34 
  35 import java.awt.*;
  36 import java.awt.event.*;
  37 
  38 public class ActiveAWTWindowTest {
  39 
  40     private Frame frame, frame2;
  41     private Button button, button2;
  42     private TextField textField, textField2;
  43     private int eventType, eventType1;
  44     private ExtendedRobot robot;
  45     private Object lock1 = new Object();
  46     private Object lock2 = new Object();
  47     private Object lock3 = new Object();
  48     private boolean passed = true;
  49     private int delay = 150;
  50 
  51     public static void main(String[] args) {
  52         ActiveAWTWindowTest test = new ActiveAWTWindowTest();
  53         test.doTest();


< prev index next >