Class Family
java.lang.Object
|
+----java.awt.Component
|
+----java.awt.Container
|
+----java.awt.Panel
|
+----java.applet.Applet
|
+----Family
- public class Family
- extends Applet
-
Family()
-
-
drawOffscreen()
- drawOffscreen() is invoked when painting the applet
-
init()
- init() is invoked when the applet is initialized
-
paint(Graphics)
- paint(Graphics) is invoked when repainting the applet
-
resetOffscreen()
- resetOffscreen() is invoked when painting the applet
-
update(Graphics)
- update(Graphics) is invoked when repainting the applet
Family
public Family()
init
public void init()
- init() is invoked when the applet is initialized
- Overrides:
- init in class Applet
paint
public void paint(Graphics g)
- paint(Graphics) is invoked when repainting the applet
- Parameters:
- g - the Graphics object
- Overrides:
- paint in class Container
update
public void update(Graphics g)
- update(Graphics) is invoked when repainting the applet
- Parameters:
- g - the Graphics object
- Overrides:
- update in class Component
drawOffscreen
public void drawOffscreen()
- drawOffscreen() is invoked when painting the applet
resetOffscreen
public void resetOffscreen()
- resetOffscreen() is invoked when painting the applet