org.opencms.jsp
Class CmsJspTagParam

java.lang.Object
  extended byjavax.servlet.jsp.tagext.TagSupport
      extended byjavax.servlet.jsp.tagext.BodyTagSupport
          extended byorg.opencms.jsp.CmsJspTagParam
All Implemented Interfaces:
javax.servlet.jsp.tagext.BodyTag, javax.servlet.jsp.tagext.IterationTag, javax.servlet.jsp.tagext.JspTag, java.io.Serializable, javax.servlet.jsp.tagext.Tag

public class CmsJspTagParam
extends javax.servlet.jsp.tagext.BodyTagSupport

A handler for <param> that accepts attributes as Strings and evaluates them as expressions at runtime.

Since:
6.0.0
Version:
$Revision: 1.21 $
Author:
Shawn Bayern
See Also:
Serialized Form

Field Summary
protected  boolean m_encode
          There used to be an 'encode' attribute; I've left this as a vestige in case custom subclasses want to use our functionality but NOT encode parameters.
protected  java.lang.String m_name
          The name of the parameter.
protected  java.lang.String m_value
          The value of the parameter.
 
Fields inherited from class javax.servlet.jsp.tagext.BodyTagSupport
bodyContent
 
Fields inherited from class javax.servlet.jsp.tagext.TagSupport
id, pageContext
 
Fields inherited from interface javax.servlet.jsp.tagext.BodyTag
EVAL_BODY_BUFFERED, EVAL_BODY_TAG
 
Fields inherited from interface javax.servlet.jsp.tagext.IterationTag
EVAL_BODY_AGAIN
 
Fields inherited from interface javax.servlet.jsp.tagext.Tag
EVAL_BODY_INCLUDE, EVAL_PAGE, SKIP_BODY, SKIP_PAGE
 
Constructor Summary
CmsJspTagParam()
          Public constructor.
 
Method Summary
 int doEndTag()
          Simply send our name and value to our appropriate ancestor.
 void release()
          Releases any resources we may have (or inherit).
 void setName(java.lang.String name)
          Sets the attribute name.
 void setValue(java.lang.String value)
          Sets the attribute value.
 
Methods inherited from class javax.servlet.jsp.tagext.BodyTagSupport
doAfterBody, doInitBody, doStartTag, getBodyContent, getPreviousOut, setBodyContent
 
Methods inherited from class javax.servlet.jsp.tagext.TagSupport
findAncestorWithClass, getId, getParent, getValue, getValues, removeValue, setId, setPageContext, setParent, setValue
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 
Methods inherited from interface javax.servlet.jsp.tagext.Tag
getParent, setPageContext, setParent
 

Field Detail

m_encode

protected boolean m_encode
There used to be an 'encode' attribute; I've left this as a vestige in case custom subclasses want to use our functionality but NOT encode parameters.


m_name

protected java.lang.String m_name
The name of the parameter.


m_value

protected java.lang.String m_value
The value of the parameter.

Constructor Detail

CmsJspTagParam

public CmsJspTagParam()
Public constructor.

Method Detail

doEndTag

public int doEndTag()
             throws javax.servlet.jsp.JspException
Simply send our name and value to our appropriate ancestor.

Returns:
EVAL_PAGE
Throws:
javax.servlet.jsp.JspException - (never thrown, required by interface)

release

public void release()
Releases any resources we may have (or inherit).


setName

public void setName(java.lang.String name)
Sets the attribute name.

Parameters:
name - the name to set

setValue

public void setValue(java.lang.String value)
Sets the attribute value.

Parameters:
value - the name to set