Applet.getParameterInfo

Applet.getParameterInfo

Class Overview | Class Members | This Package | All Packages

Syntax
public String[][] getParameterInfo()
Returns
an array describing the parameters this applet looks for.
Description
Returns information about the parameters than 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.