soujanya
Answered On : Feb 16th, 2012
An applet can react to major events in the following ways:
It can initialize itself.
It can start running.
It can stop running.
It can perform a final cleanup, in preparation for being unloaded.
Login to rate this answer.
mahamad
Answered On : Apr 15th, 2012
Applet life cycle:
applet life cycle
1.init() [born of applet]
2.start() [start of applet]
3.stop() [sometimes it goes to stopping mode also]
=>from stop method may be possible sometime it gets some response and
applet will again comes in active mode.
4.destroy() [death of applet]
=>from stop method if it not getting response then it will destroy means die.
So, in this lifecycle applet is born and die.
Login to rate this answer.