public class

ParamTag

extends BodyTagSupport
java.lang.Object
   ↳ BodyTagSupport
     ↳ org.springframework.web.servlet.tags.ParamTag

Class Overview

JSP tag for collecting name-value parameters and passing them to a ParamAware ancestor in the tag hierarchy.

This tag must be nested under a param aware tag.

See Also

Summary

Public Constructors
ParamTag()
Public Methods
int doEndTag()
void setName(String name)
Sets the name of the parameter

Required

void setValue(String value)
Sets the value of the parameter

Optional.

[Expand]
Inherited Methods
From class java.lang.Object

Public Constructors

public ParamTag ()

Public Methods

public int doEndTag ()

Throws
JspException

public void setName (String name)

Sets the name of the parameter

Required

Parameters
name the parameter name

public void setValue (String value)

Sets the value of the parameter

Optional. If not set, the tag's body content is evaluated

Parameters
value the parameter value