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.
-
panel
-
-
Graph()
-
-
action(Event, Object)
- Handles checkbox events and mouse events.
-
init()
- Initialization of the applet.
-
start()
- This is start method of an applet.
-
stop()
- This is stop method of an applet.
panel
GraphPanel panel
Graph
public Graph()
init
public void init()
- Initialization of the applet.
- Overrides:
- init in class Applet
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
stop
public void stop()
- This is stop method of an applet.
- Overrides:
- stop in class Applet
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