< prev index next >

test/javax/swing/JMenu/8067346/bug8067346.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.


   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 /* @test
  25  @bug 8067346
  26  @summary Submenu has a changed offset on Windows7 with Windows look and feel
  27  @requires (os.family == "windows")
  28  @run main bug8067346


  29  */

  30 import java.awt.Insets;
  31 import javax.swing.JFrame;
  32 import javax.swing.JMenu;
  33 import javax.swing.JMenuBar;
  34 import javax.swing.JMenuItem;
  35 import javax.swing.SwingUtilities;
  36 import javax.swing.UIManager;
  37 import javax.swing.UnsupportedLookAndFeelException;
  38 
  39 
  40 public class bug8067346 {
  41 
  42     private JMenuBar menuBar;
  43     private JFrame frame;
  44     private String[] menuClasses = {"MenuItem", "Menu",
  45         "CheckBoxMenuItem", "RadioButtonMenuItem"};
  46     private String MARGIN = ".margin";
  47     private String CHECKICONOFFSET = ".checkIconOffset";
  48     private static boolean runTest = true;
  49 




   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 8067346
  28  * @summary Submenu has a changed offset on Windows7 with Windows look and feel
  29  * @requires (os.family == "windows")
  30  * @run main bug8067346
  31  */
  32 
  33 import java.awt.Insets;
  34 import javax.swing.JFrame;
  35 import javax.swing.JMenu;
  36 import javax.swing.JMenuBar;
  37 import javax.swing.JMenuItem;
  38 import javax.swing.SwingUtilities;
  39 import javax.swing.UIManager;
  40 import javax.swing.UnsupportedLookAndFeelException;
  41 
  42 
  43 public class bug8067346 {
  44 
  45     private JMenuBar menuBar;
  46     private JFrame frame;
  47     private String[] menuClasses = {"MenuItem", "Menu",
  48         "CheckBoxMenuItem", "RadioButtonMenuItem"};
  49     private String MARGIN = ".margin";
  50     private String CHECKICONOFFSET = ".checkIconOffset";
  51     private static boolean runTest = true;
  52 


< prev index next >