Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-4236262

The JDialog(Dialog) throws IllegalArgumentException with null

XMLWordPrintable

    • merlin
    • sparc
    • solaris_2.5.1



      Name: aaC67449 Date: 05/07/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)

      ======================================================================

            mdavidsosunw Mark Davidson (Inactive)
            alisunw Ali Ali (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: