< prev index next >

test/java/awt/SplashScreen/FullscreenAfterSplash/FullScreenAfterSplash.java

Print this page


   1 /*
   2 * Copyright (c) 2013, 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 import jdk.testlibrary.OSInfo;
  25 import java.awt.*;
  26 import java.awt.Robot;
  27 import java.awt.event.InputEvent;
  28 import java.lang.InterruptedException;
  29 import java.lang.System;
  30 import java.lang.Thread;
  31 import java.lang.reflect.Method;
  32 import java.lang.reflect.Proxy;
  33 import javax.swing.*;
  34 
  35 /*
  36  * @test
  37  * @bug 8024185
  38  * @summary Native Mac OS X full screen does not work after showing the splash
  39  * @library ../
  40  * @library ../../../../lib/testlibrary

  41  * @build jdk.testlibrary.OSInfo
  42  * @build GenerateTestImage
  43  * @run main GenerateTestImage
  44  * @author Petr Pchelko area=awt.event
  45  * @run main/othervm -splash:test.png FullScreenAfterSplash
  46  */
  47 public class FullScreenAfterSplash {
  48 
  49     private static JFrame frame;
  50 
  51     private static volatile boolean windowEnteringFullScreen = false;
  52     private static volatile boolean windowEnteredFullScreen = false;
  53 
  54     public static void main(String[] args) throws Exception {
  55 
  56         if (OSInfo.getOSType() != OSInfo.OSType.MACOSX) {
  57             System.out.println("The test is applicable only to Mac OS X. Passed");
  58             return;
  59         }
  60         try {


   1 /*
   2 * Copyright (c) 2013, 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 */
  23 
  24 import jdk.testlibrary.OSInfo;
  25 import java.awt.*;
  26 import java.awt.Robot;
  27 import java.awt.event.InputEvent;
  28 import java.lang.InterruptedException;
  29 import java.lang.System;
  30 import java.lang.Thread;
  31 import java.lang.reflect.Method;
  32 import java.lang.reflect.Proxy;
  33 import javax.swing.*;
  34 
  35 /*
  36  * @test
  37  * @bug 8024185
  38  * @summary Native Mac OS X full screen does not work after showing the splash
  39  * @library ../
  40  * @library ../../../../lib/testlibrary
  41  * @modules java.desktop/sun.awt
  42  * @build jdk.testlibrary.OSInfo
  43  * @build GenerateTestImage
  44  * @run main GenerateTestImage
  45  * @author Petr Pchelko area=awt.event
  46  * @run main/othervm -splash:test.png FullScreenAfterSplash
  47  */
  48 public class FullScreenAfterSplash {
  49 
  50     private static JFrame frame;
  51 
  52     private static volatile boolean windowEnteringFullScreen = false;
  53     private static volatile boolean windowEnteredFullScreen = false;
  54 
  55     public static void main(String[] args) throws Exception {
  56 
  57         if (OSInfo.getOSType() != OSInfo.OSType.MACOSX) {
  58             System.out.println("The test is applicable only to Mac OS X. Passed");
  59             return;
  60         }
  61         try {


< prev index next >