< prev index next >

test/java/awt/Focus/FocusEmbeddedFrameTest/FocusEmbeddedFrameTest.java

Print this page
rev 17565 : 8185500: [TESTBUG] Add keywords headful/printer in java/awt and javax tests.
Summary: Add new keyword 'printer'. Some minor test fixes to show headless exception. Add some @requires windows.
Reviewed-by: serb, mbaesken


   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       6516675
  27   @summary   Tests that EmbeddedFrame can be focused.
  28   @author    anton.tarasov: area=awt-focus
  29   @requires (os.family == "windows")
  30   @modules   java.desktop/java.awt.peer
  31              java.desktop/sun.awt
  32              java.desktop/sun.awt.windows
  33   @library /java/awt/patchlib    ../../regtesthelpers
  34   @build java.desktop/java.awt.Helper
  35   @build     Util UtilInternal
  36   @run       main FocusEmbeddedFrameTest
  37 */

  38 
  39 import java.awt.*;
  40 import java.awt.event.*;
  41 import java.applet.Applet;
  42 import java.util.concurrent.atomic.AtomicBoolean;
  43 import java.lang.reflect.InvocationTargetException;
  44 import test.java.awt.regtesthelpers.Util;
  45 import test.java.awt.regtesthelpers.UtilInternal;
  46 
  47 public class FocusEmbeddedFrameTest extends Applet {
  48     static Frame embedder = new Frame("Embedder");
  49     static Frame ef = null;
  50     static volatile boolean passed;
  51 
  52     Robot robot;
  53 
  54     public static void main(String[] args) {
  55         FocusEmbeddedFrameTest app = new FocusEmbeddedFrameTest();
  56         app.init();
  57         app.start();




   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  * @key       headful
  27  * @bug       6516675
  28  * @summary   Tests that EmbeddedFrame can be focused.
  29  * @author    anton.tarasov: area=awt-focus
  30  * @requires (os.family == "windows")
  31  * @modules   java.desktop/java.awt.peer
  32  *            java.desktop/sun.awt
  33  *            java.desktop/sun.awt.windows
  34  * @library /java/awt/patchlib    ../../regtesthelpers
  35  * @build java.desktop/java.awt.Helper
  36  * @build     Util UtilInternal
  37  * @run       main FocusEmbeddedFrameTest
  38  */
  39 
  40 import java.awt.*;
  41 import java.awt.event.*;
  42 import java.applet.Applet;
  43 import java.util.concurrent.atomic.AtomicBoolean;
  44 import java.lang.reflect.InvocationTargetException;
  45 import test.java.awt.regtesthelpers.Util;
  46 import test.java.awt.regtesthelpers.UtilInternal;
  47 
  48 public class FocusEmbeddedFrameTest extends Applet {
  49     static Frame embedder = new Frame("Embedder");
  50     static Frame ef = null;
  51     static volatile boolean passed;
  52 
  53     Robot robot;
  54 
  55     public static void main(String[] args) {
  56         FocusEmbeddedFrameTest app = new FocusEmbeddedFrameTest();
  57         app.init();
  58         app.start();


< prev index next >