#* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. *### <${component.name}>

Tag name: <${component.name}>
#set ($javadocPath = "../apidocs/" + $component.getClassName().replace('.', '/') ) UIComponent class: ${component.className}
#if ($component.tagClass) #set ($javadocPath = "../apidocs/" + $component.getTagClass().replace('.', '/') ) Tag class: ${component.tagClass}
#end #if ($faceletTag) Facelet Tag Handler: ${faceletTag.className}
#end Component type: ${component.type}
Component family: ${component.family}
#if (${component.rendererType}) Renderer type: ${component.rendererType}
#set ($rendererClasses = $tagdocUtils.getRendererClasses($component,$model).values() ) #foreach ($rendererClass in $rendererClasses) #set ($javadocPath = "../apidocs/" + $rendererClass.replace('.', '/') ) Renderer class: ${rendererClass}
#end #end
${component.longDescription}

#if ($baseContent) $baseContent #end #set($facetList = ${tagdocUtils.getSortedFacetList($component)}) #if ($facetList.size() != 0)

#foreach( $facet in $facetList ) #if ($facet.longDescription) #else #end #end
Name Required Description
$facet.name $facet.isRequired()$facet.longDescription

#end #set($listenerList = ${tagdocUtils.getSortedListenerList($component)}) #if ($listenerList.size() != 0)

#foreach( $listener in $listenerList ) #if ($listener.name) #else #end #if ($listener.className) #else #end #if ($listener.eventClassName) #else #end #if ($listener.phases) #else #end #if ($listener.longDescription) #else #end #end
Name Listener Event Phases Required Description
$listener.name$listener.className$listener.eventClassName$listener.phases$listener.isRequired()$listener.longDescription

#end #set ($propertyList = ${tagdocUtils.getSortedPropertyList($component)}) #if ($propertyList.size() != 0)
#foreach( $property in $propertyList ) #if (!$property.isTagExcluded()) #if ($property.className) #set ($type = ${tagdocUtils.getDisplayType($component.className,$property.jspName,$property.className)}) #else #set ($type = ${tagdocUtils.getDisplayType($component.className,$property.jspName,"")}) #end #if ($property.jspName == "action") #elseif ($property.isMethodBinding() || $property.isMethodExpression()) #elseif ($property.jspName == "binding") #elseif ($property.isLiteralOnly()) #else #end #if ($property.longDescription) #else #end #end #end
Name Type Supports EL? Description
$property.jspName$typeYesOnly ELOnly ELNoYes$property.longDescription
#end #if ($faceletTag) #set ($attributeList = ${tagdocUtils.getSortedAttributeList($faceletTag)}) #if ($attributeList.size() != 0)
#foreach( $attribute in $attributeList ) #if (!$attribute.isTagExcluded() && $attribute.isFaceletsOnly()) #if ($property.className) #set ($type = ${tagdocUtils.getDisplayType($component.className,$property.jspName,$property.className)}) #else #set ($type = ${tagdocUtils.getDisplayType($component.className,$property.jspName,"")}) #end #if ($attribute.longDescription) #else #end #end #end
Name Type Required Description
$attribute.name$type $attribute.isRequired()$attribute.longDescription
#end #end