Interface ApplicationStateListener
- 
 public interface ApplicationStateListener
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description voidapplicationStarted(ApplicationInfo appInfo)Notification that an application has started.voidapplicationStarting(ApplicationInfo appInfo)Notification that an application is starting.voidapplicationStopped(ApplicationInfo appInfo)Notification that an application has stopped.voidapplicationStopping(ApplicationInfo appInfo)Notification that an application is stopping.
 
- 
- 
- 
Method Detail- 
applicationStartingvoid applicationStarting(ApplicationInfo appInfo) throws StateChangeException Notification that an application is starting.- Parameters:
- appInfo- The ApplicationInfo of the app
- Throws:
- StateChangeException
 
 - 
applicationStartedvoid applicationStarted(ApplicationInfo appInfo) throws StateChangeException Notification that an application has started.- Parameters:
- appInfo- The ApplicationInfo of the app
- Throws:
- StateChangeException
 
 - 
applicationStoppingvoid applicationStopping(ApplicationInfo appInfo) Notification that an application is stopping.- Parameters:
- appInfo- The ApplicationInfo of the app
 
 - 
applicationStoppedvoid applicationStopped(ApplicationInfo appInfo) Notification that an application has stopped.- Parameters:
- appInfo- The ApplicationInfo of the app
 
 
- 
 
-