Sunday, July 4, 2010

Applet Lifecycle

When an applet begins, the AWT calls the following methods, in this sequence:
  1. init( )
  2. start( )
  3. paint( )
When an applet is terminated, the following sequence of method calls takes place:
  1. stop( )
  2. destroy( )

No comments:

Post a Comment