< prev index next >

test/java/awt/Frame/SetMaximizedBounds/MaximizedMovedWindow.java

Print this page
rev 17561 : 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.


   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 import java.awt.*;
  24 
  25 /*
  26  * @test

  27  * @bug 8065739
  28  * @summary Moved window is maximazed to new screen
  29  * @author Alexandr Scherbatiy
  30  *
  31  * @run main MaximizedMovedWindow
  32  */

  33 public class MaximizedMovedWindow {
  34 
  35     public static void main(String[] args) throws Exception {
  36 
  37         //Supported platforms are Windows and OS X.
  38         String os = System.getProperty("os.name").toLowerCase();
  39         if (!os.contains("os x")) {
  40             return;
  41         }
  42 
  43         if (!Toolkit.getDefaultToolkit().
  44                 isFrameStateSupported(Frame.MAXIMIZED_BOTH)) {
  45             return;
  46         }
  47 
  48         GraphicsEnvironment ge = GraphicsEnvironment.
  49                 getLocalGraphicsEnvironment();
  50 
  51         if (ge.isHeadlessInstance()) {
  52             return;




   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 import java.awt.*;
  24 
  25 /**
  26  * @test
  27  * @key headful
  28  * @bug 8065739
  29  * @summary Moved window is maximazed to new screen
  30  * @author Alexandr Scherbatiy
  31  *
  32  * @run main MaximizedMovedWindow
  33  */
  34 
  35 public class MaximizedMovedWindow {
  36 
  37     public static void main(String[] args) throws Exception {
  38 
  39         //Supported platforms are Windows and OS X.
  40         String os = System.getProperty("os.name").toLowerCase();
  41         if (!os.contains("os x")) {
  42             return;
  43         }
  44 
  45         if (!Toolkit.getDefaultToolkit().
  46                 isFrameStateSupported(Frame.MAXIMIZED_BOTH)) {
  47             return;
  48         }
  49 
  50         GraphicsEnvironment ge = GraphicsEnvironment.
  51                 getLocalGraphicsEnvironment();
  52 
  53         if (ge.isHeadlessInstance()) {
  54             return;


< prev index next >