All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class jp.kyasu.awt.Applet

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

public class Applet
extends Applet
An applet is a small program that is intended not to be run on its own, but rather to be embedded inside another application.

The Applet class must be the superclass of any applet that is to be embedded in a Web page or viewed by the Java Applet Viewer. The Applet class provides a standard interface between applets and their environment.

Version:
12 Mar 1998
Author:
Kazuki YASUMATSU

Constructor Index

 o Applet()
Constructs an applet.

Method Index

 o start()
Called by the browser or applet viewer to inform this applet that it should start its execution.
 o stop()
Called by the browser or applet viewer to inform this applet that it should stop its execution.

Constructors

 o Applet
 public Applet()
Constructs an applet.

Methods

 o start
 public void start()
Called by the browser or applet viewer to inform this applet that it should start its execution. It is called after the init method and each time the applet is revisited in a Web page.

If a subclass of Applet overrides this method, it should call super.start().

Overrides:
start in class Applet
See Also:
stop
 o stop
 public void stop()
Called by the browser or applet viewer to inform this applet that it should stop its execution. It is called when the Web page that contains this applet has been replaced by another page, and also just before the applet is to be destroyed.

If a subclass of Applet overrides this method, it should call super.stop().

Overrides:
stop in class Applet
See Also:
start

All Packages  Class Hierarchy  This Package  Previous  Next  Index