class Applet and its special methods
- constructor
called to create an instance of the applet to load
- init()
called before applet starts running upon first visiting
the applet's page
- start()
called to start running the applet, akin to main in
C/C++; also called upon returning to the applet's page after
previously visiting it
- stop()
called upon leaving the applet's page
Reloading an applet generally calls stop(), init(),
then start(), in that order.
Ken Yasuhara <yasuhara@cs.washington.edu>
Last modified: Thu Aug 12 13:24:13 PDT 1999