Class ListChildrenTag
- java.lang.Object
-
- javax.servlet.jsp.tagext.TagSupport
-
- org.apache.sling.scripting.jsp.taglib.ListChildrenTag
-
- All Implemented Interfaces:
Serializable,IterationTag,JspTag,Tag
public class ListChildrenTag extends TagSupport
Tag for listing the children of a Resource. The children will be returned as an Iterator of Resource objects in the specified variable.- See Also:
- Serialized Form
-
-
Field Summary
-
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
Constructors Constructor Description ListChildrenTag()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intdoEndTag()Default processing of the end tag returning EVAL_PAGE.ResourcegetResource()Gets the resource of which to list the children.StringgetVar()Gets the variable name to which to save the list of children.voidsetResource(Resource resource)Sets the resource of which to list the children.voidsetVar(String var)Sets the variable name to which to save the list of children.-
Methods inherited from class javax.servlet.jsp.tagext.TagSupport
doAfterBody, doStartTag, findAncestorWithClass, getId, getParent, getValue, getValues, release, removeValue, setId, setPageContext, setParent, setValue
-
-
-
-
Method Detail
-
doEndTag
public int doEndTag()
Description copied from class:TagSupportDefault processing of the end tag returning EVAL_PAGE.- Specified by:
doEndTagin interfaceTag- Overrides:
doEndTagin classTagSupport- Returns:
- EVAL_PAGE
- See Also:
Tag.doEndTag()
-
getResource
public Resource getResource()
Gets the resource of which to list the children.- Returns:
- the Sling Resource
-
getVar
public String getVar()
Gets the variable name to which to save the list of children.- Returns:
- the variable name
-
setResource
public void setResource(Resource resource)
Sets the resource of which to list the children.- Parameters:
resource- the Sling Resource
-
setVar
public void setVar(String var)
Sets the variable name to which to save the list of children.- Parameters:
var- the variable name
-
-