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*/
29import javax.swing.*;
30import java.awt.*;
31
32public 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),
49                        "new JDialog((Window) null, Dialog.ModalityType.APPLICATION_MODAL)");
50            }
51        });
52    }
53
54    private static void assertEmptyTitle(Dialog dialog, String ctr) {
55        String title = dialog.getTitle();
56
57        if (title == null || title.length() > 0) {
58            throw new RuntimeException("Title is not empty for constructor " + ctr);
59        }
60    }
61}
62