Initialization:
occurs when the
applet is first loaded (or
reloaded). The behavior of the initialization can be changed by
overriding the init() method:
public void init() {
}
Starting:
after an applet is
initialized it is started. Starting
occurs also after an applet was
previously stopped.
To provide startup behavior,
override the start() method: