Interface ParamParent
-
- All Known Implementing Classes:
ImportSupport,ImportTag,RedirectSupport,RedirectTag,UrlSupport,UrlTag
public interface ParamParentInterface for tag handlers implementing valid parent tags for <c:param>.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidaddParameter(java.lang.String name, java.lang.String value)Adds a parameter to this tag's URL.
-
-
-
Method Detail
-
addParameter
void addParameter(java.lang.String name, java.lang.String value)Adds a parameter to this tag's URL. The intent is that the <param> subtag will call this to register URL parameters. Assumes that 'name' and 'value' are appropriately encoded and do not contain any meaningful metacharacters; in order words, escaping is the responsibility of the caller.- See Also:
ParamSupport
-
-