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

SplashScreen.getSplashScreen() does not return null for implicitly closed splash screen

XMLWordPrintable

    • b116
    • generic
    • generic
    • Verified

      The specs states:
      "SplashScreen.getSplashScreen() returns [...] null if [...] it has already been closed"
      "The [splash screen] window is closed automatically as soon as the first window is displayed by Swing/AWT"

      And the following test fails:

          public void testAutoClose() {
              SplashScreen ss = SplashScreen.getSplashScreen();
              Frame frame = new Frame();
              assertTrue(ss.isVisible());
              assertNotNull(SplashScreen.getSplashScreen());

              frame.setVisible(true);
              
              assertFalse(ss.isVisible());
              // Fails here
              assertNull(SplashScreen.getSplashScreen());

              frame.dispose();
          }

            anthony Anthony Petrov (Inactive)
            ashusher Alexander Shusherov (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: