Example usage for Java java.awt SplashScreen fields, constructors, methods, implement or subclass
The text is from its open source code.
void | close() Hides the splash screen, closes the window, and releases all associated resources. |
Graphics2D | createGraphics() Creates a graphics context (as a Graphics2D object) for the splash screen overlay image, which allows you to draw over the splash screen. |
Rectangle | getBounds() Returns the bounds of the splash screen window as a Rectangle . |
URL | getImageURL() Returns the current splash screen image. |
Dimension | getSize() Returns the size of the splash screen window as a Dimension . |
SplashScreen | getSplashScreen() Returns the SplashScreen object used for Java startup splash screen control on systems that support display. |
boolean | isVisible() Determines whether the splash screen is visible. |
void | setImageURL(URL imageURL) Changes the splash screen image. |
void | update() Updates the splash window with current contents of the overlay image. |