| |
|
| java.lang.Object com.salmonllc.html.HtmlComponent com.salmonllc.jsp.JspParameter
JspParameter | public class JspParameter extends HtmlComponent (Code) | | This class is used in concert with the Parameter tag. It does not have any html representation
|
getValue | public java.lang.String getValue()(Code) | | This method gets the value of the parameter.
java.lang.String |
getValueAsBoolean | public boolean getValueAsBoolean(boolean def)(Code) | | This method gets the value of the parameter as a boolean. If the parm is T,true,Y or Yes it will return true. If the parm is F, False, N, or No it will return false. Otherwise it will return the default value passed.
|
getValueAsInt | public int getValueAsInt()(Code) | | This method gets the value of the parameter as an int value. If the parm is null it returns -1.
|
getValueAsStringArray | public String[] getValueAsStringArray()(Code) | | This method gets the value of the parameter as a string array. The parameter should be entered as a comma seperated list.
|
setValue | public void setValue(java.lang.String newValue)(Code) | | This method sets the value of the parameter.
Parameters: newValue - java.lang.String |
|
|
|