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

Test case for locking up VM with JDK 1.1.5, Modal dialogs, and Swing

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Duplicate
    • Icon: P4 P4
    • None
    • 1.2.0
    • client-libs
    • None

      Date: Mon, 06 Apr 1998 08:41:28 -0500
      From: "Brian R. Gilstrap" <###@###.###>
      To: ###@###.###
      Subject: Reproducable test case for locking up VM with JDK 1.1.5, Modal dialogs, and Swing

      The following program will lock up the VM 99+% of the time when you
      click any button in the modal dialog on the Win95 platform. Note that it
      doesn't seem to matter what code follows the call to 'showConfirmDialog'
      (as far as I can tell), nor what code preceeds it.

      // Begin program text
      import java.awt.*;
      import java.awt.event.*;
      import com.sun.java.swing.*;

      public class Test
      {

          public static void main( String[]args )
          {
              Frame ourFrame = new Frame( "Test" );
              ourFrame.pack();
              ourFrame.setSize( 300, 200 );
              ourFrame.setLocation( 200, 200 );
              ourFrame.setVisible( true );
              int result = JOptionPane.showConfirmDialog( ourFrame, "Lock up
      the VM?" );
              ourFrame.setLocation( 150, 150 );
          }
      }
      // End program text

            amfowler Anne Fowler (Inactive)
            rkarsunw Ralph Kar (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: