This project has retired. For details please refer to its Attic page.
AddAttributeTag (Tiles 2 2.0.7 API)

org.apache.tiles.jsp.taglib
Class AddAttributeTag

Package class diagram package AddAttributeTag
java.lang.Object
  extended by javax.servlet.jsp.tagext.TagSupport
      extended by javax.servlet.jsp.tagext.BodyTagSupport
          extended by org.apache.tiles.jsp.taglib.TilesBodyTag
              extended by org.apache.tiles.jsp.taglib.RoleSecurityTagSupport
                  extended by org.apache.tiles.jsp.taglib.AddAttributeTag
All Implemented Interfaces:
Serializable, BodyTag, IterationTag, JspTag, Tag, TryCatchFinally
Direct Known Subclasses:
AddListAttributeTag

public class AddAttributeTag
extends RoleSecurityTagSupport

Adds an attribute in enclosing attribute container tag.

Enclosing attribute container tag can be :

(or any other tag which implements the AddAttributeTagParent interface. Exception is thrown if no appropriate tag can be found.

Put tag can have following atributes :

Value can also come from tag body. Tag body is taken into account only if value is not set by one of the tag attributes. In this case Attribute type is "string", unless tag body define another type.

Version:
$Rev: 727715 $ $Date: 2008-12-18 14:06:06 +0100 (Thu, 18 Dec 2008) $
See Also:
Serialized Form

Field Summary
 
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
AddAttributeTag()
           
 
Method Summary
 int doAfterBody()
          Save the body content of this tag (if any).
protected  void execute()
          Executes the tag.
 String getType()
           Returns content type: string, template or definition.
 Object getValue()
          Returns the attribute value.
protected  void reset()
          Release all allocated resources.
 void setType(String type)
           Sets content type: string, template or definition.
 void setValue(Object value)
          Sets the attribute value.
 
Methods inherited from class org.apache.tiles.jsp.taglib.RoleSecurityTagSupport
doEndTag, getRole, isAccessAllowed, setRole
 
Methods inherited from class org.apache.tiles.jsp.taglib.TilesBodyTag
doCatch, doFinally, release
 
Methods inherited from class javax.servlet.jsp.tagext.BodyTagSupport
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
 

Constructor Detail

AddAttributeTag

public AddAttributeTag()
Method Detail

getValue

public Object getValue()
Returns the attribute value.

Returns:
Attribute value. Can be a String or Object.

setValue

public void setValue(Object value)
Sets the attribute value.

Parameters:
value - Attribute value. Can be a String or Object.

getType

public String getType()

Returns content type: string, template or definition.

Returns:
The attribute type.

setType

public void setType(String type)

Sets content type: string, template or definition.

Parameters:
type - The attribute type.

reset

protected void reset()
Release all allocated resources.

Overrides:
reset in class RoleSecurityTagSupport

doAfterBody

public int doAfterBody()
                throws JspException
Save the body content of this tag (if any).

Specified by:
doAfterBody in interface IterationTag
Overrides:
doAfterBody in class BodyTagSupport
Returns:
It returns SKIP_BODY.
Throws:
JspException - if a JSP exception has occurred

execute

protected void execute()
                throws JspException
Executes the tag. It is called inside RoleSecurityTagSupport.doEndTag().

Specified by:
execute in class RoleSecurityTagSupport
Throws:
JspException - If something goes wrong during rendering.


Copyright © 2001-2008 Apache Software Foundation. All Rights Reserved.