Interface ApplicationObserver
All Packages Class Hierarchy This Package Previous Next Index
Interface ApplicationObserver
public interface netscape.application.ApplicationObserver
{
/* Methods
*/
public abstract void applicationDidPause(Application);
public abstract void applicationDidResume(Application);
public abstract void applicationDidStart(Application);
public abstract void applicationDidStop(Application);
}
Interface implemented by objects interested in receiving notifications
when the Application changes state.
Methods
applicationDidStart
public abstract void applicationDidStart(Application application)
- Informs the observer that the application's EventLoop has just started
running.
applicationDidStop
public abstract void applicationDidStop(Application application)
- Informs the observer that the application's EventLoop has just finished
receiving events.
applicationDidPause
public abstract void applicationDidPause(Application application)
- Informs the observer that the Applet that launched the Application
is no longer visible.
applicationDidResume
public abstract void applicationDidResume(Application application)
- Informs the observer that the Applet that launched the Application
is visible again.
All Packages Class Hierarchy This Package Previous Next Index