getParameter
public String getParameter(String name)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. 
Parameters:
name - a parameter name. 
Returns:
the value of the named parameter, or null if not set.//////////////////
public String getAppletInfo()
Returns information about this applet. An applet should override this method to return a String containing information about the author, version, and copyright of the applet. 
The implementation of this method provided by the Applet class returns null. 
Returns:
a string containing information about the author, version, and copyright of the applet.////////////////////
public String[][] getParameterInfo()
Returns information about the parameters that are understood by this applet. An applet should override this method to return an array of Strings describing these parameters. 
Each element of the array should be a set of three Strings containing the name, the type, and a description. For example: 
 String pinfo[][] = {
 {"fps",    "1-10",    "frames per second"},
 {"repeat", "boolean", "repeat image loop"},
 {"imgs",   "url",     "images directory"}
 };
 The implementation of this method provided by the Applet class returns null. 
Returns:
an array describing the parameters this applet looks for.