< prev index next >

test/javax/swing/JDialog/6639507/bug6639507.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
   1 /*
   2  * Copyright (c) 2010, 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 /* @test
  25    @bug 6639507
  26    @summary Title of javax.swing.JDialog is null while spec says it's empty
  27    @author Pavel Porvatov
  28 */



  29 import javax.swing.*;
  30 import java.awt.*;
  31 
  32 public class bug6639507 {
  33     public static void main(String[] args) {
  34         SwingUtilities.invokeLater(new Runnable() {
  35             public void run() {
  36                 assertEmptyTitle(new Dialog((Frame) null), "new Dialog((Frame) null)");
  37                 assertEmptyTitle(new Dialog((Frame) null, true), "new Dialog((Frame) null, true)");
  38                 assertEmptyTitle(new Dialog((Dialog) null), "new Dialog((Dialog) null)");
  39                 assertEmptyTitle(new Dialog((Window) null), "new Dialog((Window) null)");
  40                 assertEmptyTitle(new Dialog(new Dialog((Window) null), Dialog.ModalityType.APPLICATION_MODAL),
  41                         "new Dialog((Window) null), Dialog.ModalityType.APPLICATION_MODAL");
  42 
  43                 assertEmptyTitle(new JDialog((Frame) null), "new JDialog((Frame) null)");
  44                 assertEmptyTitle(new JDialog((Frame) null, true), "new JDialog((Frame) null, true)");
  45                 assertEmptyTitle(new JDialog((Dialog) null), "new JDialog((Dialog) null)");
  46                 assertEmptyTitle(new JDialog((Dialog) null, true), "new JDialog((Dialog) null, true)");
  47                 assertEmptyTitle(new JDialog((Window) null), "new JDialog((Window) null)");
  48                 assertEmptyTitle(new JDialog((Window) null, Dialog.ModalityType.APPLICATION_MODAL),
   1 /*
   2  * Copyright (c) 2010, 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 /**
  25  * @test
  26  * @key headful
  27  * @bug 6639507
  28  * @summary Title of javax.swing.JDialog is null while spec says it's empty
  29  * @author Pavel Porvatov
  30  */
  31 
  32 import javax.swing.*;
  33 import java.awt.*;
  34 
  35 public class bug6639507 {
  36     public static void main(String[] args) {
  37         SwingUtilities.invokeLater(new Runnable() {
  38             public void run() {
  39                 assertEmptyTitle(new Dialog((Frame) null), "new Dialog((Frame) null)");
  40                 assertEmptyTitle(new Dialog((Frame) null, true), "new Dialog((Frame) null, true)");
  41                 assertEmptyTitle(new Dialog((Dialog) null), "new Dialog((Dialog) null)");
  42                 assertEmptyTitle(new Dialog((Window) null), "new Dialog((Window) null)");
  43                 assertEmptyTitle(new Dialog(new Dialog((Window) null), Dialog.ModalityType.APPLICATION_MODAL),
  44                         "new Dialog((Window) null), Dialog.ModalityType.APPLICATION_MODAL");
  45 
  46                 assertEmptyTitle(new JDialog((Frame) null), "new JDialog((Frame) null)");
  47                 assertEmptyTitle(new JDialog((Frame) null, true), "new JDialog((Frame) null, true)");
  48                 assertEmptyTitle(new JDialog((Dialog) null), "new JDialog((Dialog) null)");
  49                 assertEmptyTitle(new JDialog((Dialog) null, true), "new JDialog((Dialog) null, true)");
  50                 assertEmptyTitle(new JDialog((Window) null), "new JDialog((Window) null)");
  51                 assertEmptyTitle(new JDialog((Window) null, Dialog.ModalityType.APPLICATION_MODAL),
< prev index next >