-
Bug
-
Resolution: Duplicate
-
P3
-
None
-
1.2.2, 1.3.0
-
sparc
-
solaris_2.5.1
Name: aaC67449 Date: 05/21/99
The JDialog((Dialog)null) throws IllegalArgumentException, but should
use a value returned by SwingUtilities.getSharedOwnerFrame() enstead the null,
like the JDialog(Frame) does.
javadoc says: "
/**
* Returns a toolkit-private, shared, invisible Frame
* to be the owner for JDialogs and JWindows created with
* null owners.
*/
static Frame getSharedOwnerFrame();
"
---------------- example ---------------
import javax.swing.*;
import java.awt.*;
public class Test {
public static void main(String argv[]) {
new JDialog((Dialog) null);
}
}
-------------output---------
Exception in thread "main" java.lang.IllegalArgumentException: null owner window
at java.awt.Window.ownedInit(Window.java, Compiled Code)
at java.awt.Window.<init>(Window.java, Compiled Code)
at java.awt.Dialog.<init>(Dialog.java, Compiled Code)
at javax.swing.JDialog.<init>(JDialog.java, Compiled Code)
at javax.swing.JDialog.<init>(JDialog.java, Compiled Code)
at javax.swing.JDialog.<init>(JDialog.java, Compiled Code)
at Test.main(Test.java, Compiled Code)
======================================================================
- duplicates
-
JDK-4236262 The JDialog(Dialog) throws IllegalArgumentException with null
-
- Resolved
-