Lines Matching defs:SplashScreen
47 * "SplashScreen-Image" option in a manifest file to show a splash screen.
55 * SplashScreen-Image: filename.gif
82 * The {@code SplashScreen} class provides the API for controlling the splash
97 public final class SplashScreen {
99 SplashScreen(long ptr) { // non-public constructor
104 * Returns the {@code SplashScreen} object used for
111 * @return the {@link SplashScreen} instance, or <code>null</code> if there is
114 public static SplashScreen getSplashScreen() {
115 synchronized (SplashScreen.class) {
119 // SplashScreen class is now a singleton
125 theInstance = new SplashScreen(ptr);
181 synchronized(SplashScreen.class) {
202 synchronized (SplashScreen.class) {
241 synchronized (SplashScreen.class) {
272 * <code>SplashScreen</code> when you want the splash screen to be
283 synchronized (SplashScreen.class) {
301 synchronized (SplashScreen.class) {
325 synchronized(SplashScreen.class) {
338 synchronized (SplashScreen.class) {
342 SplashScreen.markClosed();
347 synchronized (SplashScreen.class) {
368 synchronized (SplashScreen.class) {
387 private static SplashScreen theInstance = null;
389 private static final PlatformLogger log = PlatformLogger.getLogger("java.awt.SplashScreen");