-
Bug
-
Resolution: Won't Fix
-
P3
-
None
-
1.2.2, 1.3.0
-
sparc
-
solaris_2.5.1
Name: aaC67449 Date: 05/07/99
The JWindow((Window)null) throws IllegalArgumentException, but should
use a value returned by SwingUtilities.getSharedOwnerFrame() enstead the null,
like the JWindow(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 JWindow((Window) 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 javax.swing.JWindow.<init>(JWindow.java, Compiled Code)
at Test.main(Test.java, Compiled Code)
======================================================================
- duplicates
-
JDK-4240288 The JWindow(Window) throws IllegalArgumentException with null
-
- Closed
-