All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class IMSWG.IW.StartModelet

java.lang.Object
   |
   +----java.awt.Component
           |
           +----java.awt.Container
                   |
                   +----java.awt.Panel
                           |
                           +----java.applet.Applet
                                   |
                                   +----IMSWG.IW.StartModelet

public abstract class StartModelet
extends Applet
Handles the basic starting, stopping, and restarting for a a Modelet. Use in conjunction with Modelet class to create an Applet with a popup frame. Expects the derived class to create a Modelet and hand a reference back to the base class

See Also:
Modelet, Applet

Constructor Index

 o StartModelet()

Method Index

 o init(Modelet)
Should be called by init() in the derived class
 o start()
This method is executed whenever the page containing the applet is displayed in the browser.
 o stop()
Runs whenever the browser is no longer showing the page containing the applet.

Constructors

 o StartModelet
 public StartModelet()

Methods

 o init
 public void init(Modelet passedModelet)
Should be called by init() in the derived class

 o start
 public void start()
This method is executed whenever the page containing the applet is displayed in the browser. It forces the modelet to reinitialize its state so as to be able to dispatch correctly and then starts it.

Overrides:
start in class Applet
 o stop
 public void stop()
Runs whenever the browser is no longer showing the page containing the applet. Hides and destroys frame, releases resources, and frees up as much storage as possible.

Overrides:
stop in class Applet

All Packages  Class Hierarchy  This Package  Previous  Next  Index