0 votes
in JAVA by

What is the lifecycle of an applet in Java?

1 Answer

0 votes
by

init() method – Can be called when an applet is first loaded

start() method – Can be called each time an applet is started.

paint() method – Can be called when the applet is minimized or maximized.

stop() method – Can be used when the browser moves off the applet’s page.

destroy() method – Can be called when the browser is finished with the applet.

...