Class Graph

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

public class Graph
extends Applet
Applet implementation.


Variable Index

 o panel

Constructor Index

 o Graph()

Method Index

 o action(Event, Object)
Handles checkbox events and mouse events.
 o init()
Initialization of the applet.
 o start()
This is start method of an applet.
 o stop()
This is stop method of an applet.

Variables

 o panel
 GraphPanel panel

Constructors

 o Graph
 public Graph()

Methods

 o init
 public void init()
Initialization of the applet.

Overrides:
init in class Applet
 o start
 public void start()
This is start method of an applet. The applet start method is called by the browser after init is called.

Overrides:
start in class Applet
 o stop
 public void stop()
This is stop method of an applet.

Overrides:
stop in class Applet
 o action
 public boolean action(Event evt,
                       Object arg)
Handles checkbox events and mouse events.

Parameters:
evt - The event.
arg - The argument.
Returns:
true or false.
Overrides:
action in class Component