Class Family

java.lang.Object
   |
   +----java.awt.Component
           |
           +----java.awt.Container
                   |
                   +----java.awt.Panel
                           |
                           +----java.applet.Applet
                                   |
                                   +----Family

public class Family
extends Applet

Constructor Index

 o Family()

Method Index

 o drawOffscreen()
drawOffscreen() is invoked when painting the applet
 o init()
init() is invoked when the applet is initialized
 o paint(Graphics)
paint(Graphics) is invoked when repainting the applet
 o resetOffscreen()
resetOffscreen() is invoked when painting the applet
 o update(Graphics)
update(Graphics) is invoked when repainting the applet

Constructors

 o Family
  public Family()

Methods

 o init
  public void init()
init() is invoked when the applet is initialized

Overrides:
init in class Applet
 o paint
  public void paint(Graphics g)
paint(Graphics) is invoked when repainting the applet

Parameters:
g - the Graphics object
Overrides:
paint in class Container
 o update
  public void update(Graphics g)
update(Graphics) is invoked when repainting the applet

Parameters:
g - the Graphics object
Overrides:
update in class Component
 o drawOffscreen
  public void drawOffscreen()
drawOffscreen() is invoked when painting the applet

 o resetOffscreen
  public void resetOffscreen()
resetOffscreen() is invoked when painting the applet