com.sas.awt
Interface AppletStateChangedListener

All Superinterfaces:
java.util.EventListener

public interface AppletStateChangedListener
extends java.util.EventListener

AppletStateChangedListener interface is a specialization of java.util.EventListener. It defines the methods that are necessary for a component to support in order to act as a listener for state change events from an applet.

See Also:
AppletStateChangedEvent, AppletStateChangedSource

Method Summary
 void appletDestroy(AppletStateChangedEvent event)
          The event handler for destroy type AppletStateChangedListener events.
 void appletInit(AppletStateChangedEvent event)
          The event handler for init type AppletStateChangedListener events.
 void appletStart(AppletStateChangedEvent event)
          The event handler for start type AppletStateChangedListener events.
 void appletStop(AppletStateChangedEvent event)
          The event handler for stop type AppletStateChangedListener events.
 

Method Detail

appletStart

void appletStart(AppletStateChangedEvent event)
The event handler for start type AppletStateChangedListener events. This method will be called by notifyAppletStateChanged in an applet, which will be called from the applet's start method. It will be called after appletInit and before appletStop.

Parameters:
event - The AppletStateChangedEvent sent by the source
See Also:
appletStop(com.sas.awt.AppletStateChangedEvent)

appletStop

void appletStop(AppletStateChangedEvent event)
The event handler for stop type AppletStateChangedListener events. This method will be called by notifyAppletStateChanged in an applet, which will be called from the applet's stop method. It will be called after appletStart and before appletDestroy.

Parameters:
event - The AppletStateChangedEvent sent by the source
See Also:
appletStart(com.sas.awt.AppletStateChangedEvent)

appletInit

void appletInit(AppletStateChangedEvent event)
The event handler for init type AppletStateChangedListener events. This method will be called by notifyAppletStateChanged in an applet, which will be called from the applet's init method. It will be called before appletStart.

Parameters:
event - The AppletStateChangedEvent sent by the source
See Also:
appletDestroy(com.sas.awt.AppletStateChangedEvent)

appletDestroy

void appletDestroy(AppletStateChangedEvent event)
The event handler for destroy type AppletStateChangedListener events. This method will be called by notifyAppletStateChanged in an applet, which will be called from the applet's destroy method. It will be called after appletStop.

Parameters:
event - The AppletStateChangedEvent sent by the source
See Also:
appletInit(com.sas.awt.AppletStateChangedEvent)



Copyright © 2009 SAS Institute Inc. All Rights Reserved.