org.opencms.jsp
Interface I_CmsJspTagParamParent

All Known Implementing Classes:
CmsJspTagImage, CmsJspTagInclude

public interface I_CmsJspTagParamParent

Interface for tag handlers implementing valid parent tags for <c:param>.

Since:
6.0.0
Version:
$Revision: 1.12 $
Author:
Shawn Bayern

Method Summary
 void addParameter(java.lang.String name, java.lang.String value)
          Add a parameter to this tag.
 

Method Detail

addParameter

void addParameter(java.lang.String name,
                  java.lang.String value)
Add a parameter to this tag. The intent is that the <param> subtag will call this to register 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.

Parameters:
name - the name of the parameter
value - the value of the parameter
See Also:
CmsJspTagParam