- java.lang.Object
-
- javafx.application.Preloader.StateChangeNotification
-
- All Implemented Interfaces:
-
Preloader.PreloaderNotification
- Enclosing class:
- Preloader
public static class Preloader.StateChangeNotification extends Object implements Preloader.PreloaderNotification
发出申明状态更改的通知。 在加载应用程序类(并构造实例),调用应用程序init方法或调用应用程序启动方法之前,将立即将状态更改通知发送到预加载程序。- 从以下版本开始:
- JavaFX 2.0
-
-
Nested Class Summary
Nested Classes Modifier and Type Class 描述 static class
Preloader.StateChangeNotification.Type
枚举,定义与此通知相关联的更改类型
-
构造方法摘要
构造方法 Constructor 描述 StateChangeNotification(Preloader.StateChangeNotification.Type notificationType)
构造指定类型的StateChangeNotification。StateChangeNotification(Preloader.StateChangeNotification.Type notificationType, Application application)
为指定的应用程序构造指定类型的StateChangeNotification。
-
-
-
构造方法详细信息
-
StateChangeNotification
public StateChangeNotification(Preloader.StateChangeNotification.Type notificationType)
构造指定类型的StateChangeNotification。- 参数
-
notificationType
- 此通知的类型。
-
StateChangeNotification
public StateChangeNotification(Preloader.StateChangeNotification.Type notificationType, Application application)
为指定的应用程序构造指定类型的StateChangeNotification。- 参数
-
notificationType
- 此通知的类型。 -
application
- 与此通知关联的应用程序实例。
-
-
方法详细信息
-
getType
public Preloader.StateChangeNotification.Type getType()
返回通知的类型。- 结果
- 其中之一:BEFORE_LOAD,BEFORE_INIT,BEFORE_START
-
getApplication
public Application getApplication()
返回与此通知关联的应用程序实例。 对于BEFORE_LOAD通知为null,其他通知类型为非空。- 结果
- 应用程序实例或null。
-
-