Applet.getParameter
Class Overview | Class Members |
This Package |
All Packages
public String getParameter( String name )
Parameters
- name
- a parameter name.
Returns
the value of the named parameter.
Description
Returns the value of the named parameter in the HTML tag. For
example, if this applet is specified as
<applet code="Clock" width=50 height=50>
<param name=Color value="blue">
</applet>
then a call to getParameter("Color") returns the
value "blue".
The name argument is case insensitive.