< prev index next >

test/javax/swing/JInternalFrame/DockIconRepaint/DockIconRepaint.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.
   1 /*
   2  * Copyright (c) 2016, 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 java.awt.Color;
  25 import java.awt.EventQueue;
  26 import java.awt.Graphics;
  27 import java.awt.Point;
  28 import java.awt.Rectangle;
  29 import java.awt.Robot;
  30 import java.beans.PropertyVetoException;
  31 
  32 import javax.swing.JDesktopPane;
  33 import javax.swing.JFrame;
  34 import javax.swing.JInternalFrame;
  35 import javax.swing.JPanel;
  36 
  37 /**
  38  * @test

  39  * @bug 8144166
  40  * @requires (os.family == "mac")
  41  */

  42 public final class DockIconRepaint {
  43 
  44     private static volatile Color color;
  45 
  46     private static JFrame frame;
  47 
  48     private static JInternalFrame jif;
  49 
  50     private static Robot robot;
  51 
  52     private static Point iconLoc;
  53 
  54     private static Rectangle iconBounds;
  55 
  56     public static void main(final String[] args) throws Exception {
  57         robot = new Robot();
  58         EventQueue.invokeAndWait(DockIconRepaint::createUI);
  59         try {
  60             robot.waitForIdle();
  61             color = Color.BLUE;


   1 /*
   2  * Copyright (c) 2016, 2017, 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 java.awt.Color;
  25 import java.awt.EventQueue;
  26 import java.awt.Graphics;
  27 import java.awt.Point;
  28 import java.awt.Rectangle;
  29 import java.awt.Robot;
  30 import java.beans.PropertyVetoException;
  31 
  32 import javax.swing.JDesktopPane;
  33 import javax.swing.JFrame;
  34 import javax.swing.JInternalFrame;
  35 import javax.swing.JPanel;
  36 
  37 /**
  38  * @test
  39  * @key headful
  40  * @bug 8144166
  41  * @requires (os.family == "mac")
  42  */
  43 
  44 public final class DockIconRepaint {
  45 
  46     private static volatile Color color;
  47 
  48     private static JFrame frame;
  49 
  50     private static JInternalFrame jif;
  51 
  52     private static Robot robot;
  53 
  54     private static Point iconLoc;
  55 
  56     private static Rectangle iconBounds;
  57 
  58     public static void main(final String[] args) throws Exception {
  59         robot = new Robot();
  60         EventQueue.invokeAndWait(DockIconRepaint::createUI);
  61         try {
  62             robot.waitForIdle();
  63             color = Color.BLUE;


< prev index next >