All Packages Class Hierarchy This Package Previous Next Index
Class IMSWG.IW.SubSet.StartModelet
java.lang.Object
|
+----java.awt.Component
|
+----java.awt.Container
|
+----java.awt.Panel
|
+----java.applet.Applet
|
+----IMSWG.IW.SubSet.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
-
StartModelet()
-
-
init(Modelet)
- Should be called by init() in the derived class
-
start()
- This method is executed whenever the page containing the applet is
displayed in the browser.
-
stop()
- Runs whenever the browser is no longer showing the page containing
the applet.
StartModelet
public StartModelet()
init
public void init(Modelet passedModelet)
- Should be called by init() in the derived class
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
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