 | java.applet
 | Creating Applets
 | create a class that extends java.applet.Applet |
 | Make sure to fill in appropriate behavior in the
Applet's life-cycle |
 | init() |
 | start() |
 | run() (sometimes) |
 | paint() |
 | update() (sometimes) |
|
 | Drawing in Applets
 | paint(Graphics g) |
 | repaint(Graphics g) |
 | update() |
 | Examples later |
|
|
|