Class MainApp

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

public class MainApp
extends Applet
The main "What's In A Line?" applet class. This class is a front end to the real applet. This class contains the button that appears in the web browser. This class also launches AwtFrame which is where the the applet really exists.


Constructor Index

 o MainApp()

Method Index

 o action(Event, Object)
Wait for someone to press the "Start" button.
 o create()
Create the independent "What's In A Line?" applet frame.
 o init()
Create the "Start" button that appears in the browser.
 o main(String[])
Only used when running the applet from the command line.

Constructors

 o MainApp
 public MainApp()

Methods

 o init
 public void init()
Create the "Start" button that appears in the browser.

Overrides:
init in class Applet
 o create
 public void create()
Create the independent "What's In A Line?" applet frame.

 o action
 public boolean action(Event event,
                       Object arg)
Wait for someone to press the "Start" button.

Overrides:
action in class Component
 o main
 public static void main(String args[])
Only used when running the applet from the command line.