All Packages Class Hierarchy This Package Previous Next Index
Class untitled1.Applet1
java.lang.Object
|
+----java.awt.Component
|
+----java.awt.Container
|
+----java.awt.Panel
|
+----java.applet.Applet
|
+----untitled1.Applet1
- public class Applet1
- extends Applet
Example comment. This will be shown in the documentation
file for this class.
-
Applet1()
- Construct the applet
-
destroy()
- Destroy the applet
-
getAppletInfo()
- Get Applet information
-
getParameter(String, String)
- Get a parameter value
-
getParameterInfo()
- Get parameter info
-
init()
- Initialize the applet
-
jbInit()
- Component initialization
-
main(String[])
- Main method
-
start()
- Start the applet
-
stop()
- Stop the applet
Applet1
public Applet1()
- Construct the applet
getParameter
public String getParameter(String key,
String def)
- Get a parameter value
- Parameters:
- key - String with key value
- def - Definition for key value
init
public void init()
- Initialize the applet
- Overrides:
- init in class Applet
jbInit
public void jbInit() throws Exception
- Component initialization
- Throws: Exception
- Throws general exception
start
public void start()
- Start the applet
- Overrides:
- start in class Applet
stop
public void stop()
- Stop the applet
- Overrides:
- stop in class Applet
destroy
public void destroy()
- Destroy the applet
- Overrides:
- destroy in class Applet
getAppletInfo
public String getAppletInfo()
- Get Applet information
- Overrides:
- getAppletInfo in class Applet
getParameterInfo
public String[][] getParameterInfo()
- Get parameter info
- Overrides:
- getParameterInfo in class Applet
main
public static void main(String args[])
- Main method
- Parameters:
- args - Array of string with parameter
values for program
All Packages Class Hierarchy This Package Previous Next Index