Applet.init

Applet.init

Class Overview | Class Members | This Package | All Packages

Syntax
public void init()
Description
Called by the browser or applet viewer to inform this applet that it has been loaded into the system. It is always called before the first time that the start method is called.

A subclass of Applet should override this method if it has initialization to perform. For example, an applet with threads would use the init method to create the threads and the destroy method to kill them.

The implementation of this method provided by the Applet class does nothing.

See Also
destroy, start, stop