| Tag Summary | 
| commandButton | Renders an HTML "input" element. Decode Behavior  Obtain the Mapfrom the "requestParameterMap" property of theExternalContext. If the value in theMapfor the value of the "clientId" property of the component isnull, create a String by concatenating the value of the "clientId" property of the component with the String ".x" (without the quotes). Create another String in the same manner, but concatenate ".y" (without the quotes). Ifnullis the value in theMapfor both Strings, return fromdecode(). If the value in theMapfor the value of the "clientId" property of the component is notnull, get the value of the "type" attribute, and convert it to lower case. If the result is equal to the String "reset" (without the quotes), return fromdecode(). Otherwise, create ajavax.faces.event.ActionEventaround the component, and pass it to thequeueEvent()method of the component, which must be an instance ofUICommand. Encode Behavior  Render the clientId of the component as the value of the "name" attribute. Render the current value of the component as the value of the "value" attribute. If "image" attribute is specified render it as the value of the "src" attribute after passing it to the getResourceURL()method of theViewHandlerfor this application, and passing the result through theencodeResourceURL()method of theExternalContext. Note that callinggetResourceURL()will prefix the context-root of the current application if the value of the "src" attribute starts with "/". When handling the "image" attribute, the value must not be escaped. For example,&must not be turned into&. If the "styleClass" attribute is specified, render its value as the value of the "class" attribute. If the user has specified an "onclick" attribute, append that JavaScript to any existing JavaScript already being output by the implementation before rendering. If the component being rendered by this renderer has any UIParameterchildren, each one of them must be rendered using the renderer for component-family: "javax.faces.Input" and renderer-type: "javax.faces.Hidden". For discussion, this is called the hiddenRenderer. A component with component-type "javax.faces.Input" must be created for local use in rendering eachUIParameterchild. The "id" property of the temporary component must be set to the "name" of theUIParameter. The "value" property of the temporary component must be set to the "value" of theUIParameter. For eachUIParameterchild, the hiddenRenderer must have itsencodeBegin(),encodeChildren(), andencodeEnd()methods called, in order, passing the temporary component as the second argument. | 
| commandLink | Render an HTML "a" anchor element that acts like a form submit button when clicked. General Behaviour Both the encode and decode behavior require the ability to get the id/name for a hidden field, which may be rendered in markup or which may be programmatically added via client DOM manipulation, whose value is set by the JavaScript form submit. This name must be constructed as follows:  Get the clientId for the form of which this component is a child.Append NamingContainer.SEPARATOR_CHAR.Append a constant string that is the same for all command link components in the tree. In the following text, this String is called hiddenFieldName. Decode Behavior  Obtain the "clientId" property of the component. Obtain the Mapfrom the "requestParameterMap" property of theExternalContext. Derive hiddenFieldName as above. Get the entry in theMapunder the key that is the hiddenFieldName. If the there is no entry, or the entry is the empty String, or the entry is not equal to the value of the "clientId" property, return immediately. If there is an entry, and its value is equal to the value of the "clientId" property, create a newjavax.faces.event.ActionEventinstance around the component and callqueueActionEvent()on the component, passing the event. Encode Behavior  If the value of the disabledattribute istrue, render a span element. Render all the passthru attributes and thetargetattribute as pass-through attributes on the span, even though thetargetattribute will have no effect on a span. Render the current value of the component as the content of the span. Return. If the disabledattribute is not present, or its value isfalse, render an HTMLaelement. Render "#" as the value of the "href" attribute. Render the current value of the component as the link text if it is specified. Render JavaScript that is functionally equivalent to the following as the value of the "onclick" attribute: document.forms['CLIENT_ID']['hiddenFieldName'].value='CLIENT_ID'; document.forms['CLIENT_ID']['PARAM1_NAME'].value='PARAM1_VALUE'; document.forms['CLIENT_ID']['PARAM2_NAME'].value='PARAM2_VALUE'; return false;
 document.forms['CLIENT_ID'].submit()" where hiddenFieldName is as described above, CLIENT_ID is the clientId of the UICommand component, PARAM*_NAME and PARAM*_VALUE are the names and values, respectively, of any nested UIParameter children. The name and the value must be URLEncoded. Note that the required url encoding is handled by ResponseWrter.writeAttribute(). If an "onclick" attribute was specified by the user, render this JavaScript in a function, and render the user's JavaScript in a function. Render both functions in a choice function as follows: var a=function(){#USER_FUNCTION#}; var b=function(){#JSF_FUNCTION#}; return (a()==false) ? false : b();
 where #USER_FUNCTION# is the user's JavaScript and #JSF_FUNCTION# is the JavaScript rendered by JSF. The choice function should operate such that if the user's JavaScript returns true, then the rendered JavaScript will also execute. If the "styleClass" attribute is specified, render its value as the value of the "class" attribute. Render any non-UIParameter output children as normal inside of the "a" element. These will appear as the link text. Allow the form renderer to output a single "input" element (for the entire page, regardless of how many command link components are in the page) of "type" "hidden" whose "name" is the value of hiddenFieldName, and which must not have a "value" attribute. Multiple occurrences of command link components in the tree should not cause multiple hiddenFieldName hidden fields. Allow the form renderer to output an "input" element of "type" "hidden" for each of the nested UIParameter children, taking the name property (but not the value) from each one in turn. If the "disabled" attribute is specified, do not render the HTML "a" anchor element or its "href" attribute. Instead, render a "span" element. If the "styleClass" attribute is specified, render its value as the value of the "class" attribute on the "span". Render any pass-through attributes on the "span". The content of the span element comes from the value of the component or its children as specified above. If the user specified a targetattribute, its value must be set using javascript since theonclickhandler will prevent the target attribute from being generated. This must be accomplished using JavaScript that is equivalent to the following. document.forms['CLIENT_ID'].target='TARGET';
 Where TARGET is the value of the target attribute on the JSP tag. | 
| dataTable | Renders an HTML "table" element compliant with the HTML 401 specification. Render the "caption" facet, if present, inside a "caption" element immediately below the "table" element. If the "captionClass" attribute is specified, render its value as the value of the "class" attribute on the "caption" element. If the "captionStyle" attribute is specified, render its value as the value of the "style" attribute on the "caption" element. Please consult the javadoc for UIDatato supplement this specification. If the "styleClass" attribute is specified, render its value as the value of the "class" attribute on the "table" element. Any pass-through attributes are also rendered on the "table" element. Column Groups  If the UIDatacomponent has a "colgroups" facet, render its contents. Consistent with the rules of facets in general, this facet must have only one child. In general, this will be apanel groupcomponent that will containcolgroupandcolelements per the HTML Table specification. Use of column grouping can improve accessibility. This facet must be rendered before the table header and footer. Rendering the header  If the UIDatacomponent has a "header" facet, or any of the childUIColumncomponents has a "header" facet, render a "thead" element. If theUIDatacomponent has a "header" facet, encode its contents inside of "tr" and "th" elements, respectively. Output the value of the "headerClass" attribute of theUIDatacomponent, if present, as the value of the "class" attribute on the "th". Output the number of childUIColumncomponents of theUIDatacomponent as the value of the "colspan" attribute on the "th". Output "colgroup" as the value of the "scope" attribute on the "th" element. If any of the child UIColumncomponents has a "header" facet render a "tr" element. For eachUIColumnthat actually has a "header" facet, render it inside of a "th" element. Columns that don't have a "header" facet cause an empty "th" element to be rendered. Output the value of the "headerClass" attribute of theUIColumncomponent, if present, as the value of the "class" attribute on the "th". If the "headerClass" attribute of theUIColumncomponent is not present, output the value of the "headerClass" attribute of theUIDatacomponent, if present, as the value of the "class" attribute on the "th". Output "col" as the value of the "scope" attribute on the "th" element. Close out the "thead" element. Rendering the footer   If the UIDatacomponent has a "footer" facet, or any of the childUIColumncomponents has a "footer" facet, render a "tfoot" element. If theUIDatacomponent has "footer" facets, encode the contents inside of a "tr" element. If any of the child UIColumncomponents has a "footer" facet render a "td" element. For eachUIColumnthat actually has a "footer" facet, render it inside of a "td" element. Columns that don't have a "footer" facet cause an empty "td" element to be rendered. Output the value of the "footerClass" attribute of theUIColumncomponent, if present, as the value of the "class" attribute on the "td". If the "footerClass" attribute of theUIColumncomponent is not present, output the value of the "footerClass" attribute of theUIDatacomponent, if present, as the value of the "class" attribute on the "td". If the UIDatacomponent has a "footer" facet, encode its contents inside of "tr" and "td" elements, respectively. Output the value of the "footerClass" attribute of theUIDatacomponent, if present, as the value of the "class" attribute on the "td". Output the number of childUIColumncomponents of theUIDatacomponent as the value of the "colspan" attribute on the "td". Close out the "tfoot" element. Rendering the table body  Look at the value of the "bodyrows" attribute. If present, this must be a comma separated list of integers. Each entry in this list is the row index of the row before which a "tbody" element should be rendered. If there was no "bodyrows" attribute, or it was empty, render a "tbody" element. Keep track of the result of the "rows" property on the UIDatacomponent. Keep track of the number of rows we have rendered so far. Iterate through the rows. Set the "rowIndex" property of theUIDatacomponent to be correct as we iterate through the rows. Stop rendering children and close out the "tbody" element if the "rowAvailable" property of theUIDatareturned false. If the current row index is contained in the "bodyrows" attribute, check if a "tbody" start element was rendered that needs to be closed, and if so, close the "tbody" element. Then render a "tbody" element start. Otherwise, do not render a "tbody" element. Output a "tr" element. Output the value of the "rowClasses" per the attribute description below. For each UIColumnchild, if the column component has a "rowHeader" attribute with a value of "true", output a "th" element with a "scope" attribute with the value of "row". Otherwise, if the column component has no "rowHeader" attribute, or its value is false, output a "td" element. In either case attach the value of the "columnClasses" attribute of theUIDatacomponent per the attribute description below. Recursively encode each child of eachUIColumnchild. Close out the "td" or "th" element. When done with the row, close out the "tr" element. When done with all the rows, close out the "tbody" element. When done rendering all the rows, set the "rowIndex" property of the UIDatato -1, and close out the "table" element. | 
| form | Renders an HTML "form" element. Decode Behavior  Obtain the Mapfrom the "requestParameterMap" property of theExternalContext. If the map contains an entry for the "clientId" of thisUIFormcomponent, callsetSubmitted(true)on the form, otherwise callsetSubmitted(false)on the form. Encode Behavior  The value of the "method" attribute must be "post". The value of the "action" attribute must be the result of passing the view identifier of the current view to the getActionURL()method of theViewHandlerfor this application, then passing that String to theencodeActionURL()method on theExternalContext. The value of the acceptcharset attribute must be rendered as the value of "accept-charset". If the "styleClass" attribute is specified, render its value as the value of the "class" attribute. Render a "name" attribute with a value the same as the "id" attribute as described in "General Notes on Encoding" regarding the "id" attribute for UIInput components. Obtain the CallUIViewRoot view identifierand use it to obtain anaction URLby callingViewHandler.getActionURL. Use theaction URLto obtain anencoded action URLby callingExternalContext.encodeActionURL. Obtain anencoded partial action URLby callingExternalContext.encodePartialActionURLusingaction URLas the argument. Compare the result fromExternalContext.encodePartialActionURLwith the value fromExternalContext.encodeActionURL(). If they are different, render a hidden field with the namejavax.faces.encodedURLand the value of this hidden field as the value fromExternalContext.encodePartialActionURL. ViewHandler.writeState()before the the close of the "form" element. Render all the necessary hidden fields for all commandLink instances in the page just before the close of the "form" element. Just before rendering the closing  </form> element tag, render any resources that have been targeted for this form:   Obtain a UIViewRootinstance.Obtain a Listof component resources targeted for this form with a call toUIViewRoot.getComponentResources()with theString "form"as the argument.Iterate over the returned ListofUIComponentinstances and callencodeAllon eachUIComponentinstance. | 
| graphicImage | Renders an HTML "img" element. Render the clientId as the value of the "id" attribute.  Handling the Value  If the "name" attribute is present, execute algorithm Common Algorithm for Obtaining A Resource to Render to obtain a Resourceinstance. CallResource.getRequestPath()and output the result as the value of the "src" attribute on the rendered markup. Otherwise, if the "url" attribute is present, treat its value as if it was the value of the "value" attribute. Otherwise, if the "value" attribute is present, render the value of the component as the value of the "src" attribute, after passing it to the getResourceURL()method of theViewHandlerfor this application, and passing the result through theencodeResourceURL()method of theExternalContext. When handling the "src" attribute, the value must not be escaped. For example, &must not be turned into&. If the "styleClass" attribute is specified, render its value as the value of the "class" attribute. | 
| inputHidden | Renders an HTML "input" element of type "hidden". Decode Behavior Encode Behavior  Render the clientId of the component as the value of the "name" attribute. Render the current value of the component as the value of the "value" attribute. | 
| inputSecret | Renders an HTML "input" element of "type" "password". Decode Behavior Encode Behavior   Render the clientId of the component as the value of the "name" attribute. Render the current value of the component as the value of the "value" attribute, if and only if the "redisplay" component attribute is the string "true". If the "styleClass" attribute is specified, render its value as the value of the "class" attribute. | 
| inputText | Renders an HTML "input" element of "type" "text". Decode Behavior  Obtain the Mapfrom the "requestParameterMap" property of theExternalContext. If theMapcontains an entry for the "clientId" of the component, pass the value of the entry to thesetSubmittedValue()method of the component, which must be an instance ofEditableValueHolder. Encode Behavior   Render the clientId of the component as the value of the "name" attribute. Render the current value of the component as the value of the "value" attribute. If the "styleClass" attribute is specified, render its value as the value of the "class" attribute.  | 
| inputTextarea | Renders an HTML "textarea" element. Decode Behavior Encode Behavior   Render the clientId as the value of the "name" attribute. Render the current valu eof the component inside the "textarea" element. | 
| message | Render a single message for a specific component. Set-up for Rendering  Obtain the "summary" and "detail" properties from UIMessagecomponent. If not present, keep the empty string as the value, respectively. Obtain the firstFacesMessageto render from the component, using the "for" property of theUIMessage. This will be the only message we render. Obtain the severity style for this message. If the severity of the message isFacesMessage.SEVERITY_INFO, the severity style comes from the value of the "infoStyle" attribute. If the severity of the message isFacesMessage.SEVERITY_WARN, the severity style comes from the value of the "warnStyle" attribute, and so on for each of the severities,INFO, WARN, ERRORandFATAL. The same rules apply for obtaining the severity style class, but instead of "infoStyle, warnStyle", etc use "infoClass, warnClass", etc. Obtain the "style", "styleClass" and "layout" attributes from theUIMessagecomponent. If we have a "style" attribute and a severity style attribute, use the severity style attribute as the value of the "style" attribute. If we have no "style" attribute, but do have a severity style, use the severity style as the value of the "style" attribute. The same precedence rules apply for the style class. Obtain the value of thedirandlangattributes. Rendering  For the message renderer, we only render one row, for the first message. For the messages renderer, we render as many rows as we have messages. If any of the "dir", "lang", "style" or "styleClass" attributes has a non-null value (as determined above), render a "span" element, outputting the value of the "style" attribute as the the value of the "style" attribute, and outputting the value of the "styleClass" attribute as the value of the "class" attribute on the "span" element. Output the "dir" and "lang" attributes as well, if they are present. If the UIMessagehas a "tooltip" attribute with the value of "true", and theUIMessagehas "showSummary" and "showDetail" properties with the value "true", if we haven't already written out the "span", output the "summary" as the value of the "title" attribute on the "span". If we haven't already written out a "title" attribute, and "showSummary" is true, output the summary. If "showDetail" is true, output the detail. Close out the span if necessary. | 
| messages | The same as for the Message renderer, but output all the messages. If an "id" attribute has been specified, it must be rendered on the outermost markup corresponding to this component. If the value of the "layout" attribute is "table", render nested "table", "tr", and "td" elements, in that order. If the value of the "layout" attribute is "list", or the "layout" attribute is not specified, render nested "ul", "li" elements, in that order. Output the value of the "style" attribute as the value of the "style" attribute, output the value of the "styleClass" attribute as the value of the "class" attribute, and output the dir and lang attributes. Output these values on the "table" element or the "ul" element. Output the values of the "errorStyle", "fatalStyle", "infoStyle", "warnStyle" attributes as the value of the "style" attribute on either the "tr" element or the "li" element. Output the values of the "errorClass", "fatalClass", "infoClass", "warnClass" attributes as the value of the "class" attribute on either the "tr" element or the "li" element. The component is a UIMessages, and there is no "for" attribute. Therefore, use eithernullto obtain the messages from theFacesContextor the empty string if the components "globalOnly" property istrue. If the layout was "table" close out the table elements, otherwise, close out the list elements. | 
| button | Render a button that does not cause an HTTP POST.  Encode Behavior Render an HTML "input" element of type "button". The value of the component is rendered as the button text and the outcome of the component is used to determine the target URL which is activated by onclick. If "image" attribute is specified, render it as the value of the "src" attribute after passing it to the getResourceURL()method of theViewHandlerfor this application, and passing the result through theencodeResourceURL()method of theExternalContext. If the component is not disabled, take the following actions. Algorithm to obtain the url to which the user-agent should issue a GET request when clicked Obtain the NavigationCasethat corresponds to the component instance for thisRenderer. Obtain an instance of javax.faces.application.ConfigurableNavigationHandlerfrom theViewHandler. If no such instance can be obtained, write the "disabled" attribute on the button. Otherwise, let outcome be the result of callinggetOutcome()on the argument component, which must be an instance ofUIOutcomeTarget. If this result isnull, let outcome be the viewId of the currentUIViewRoot. Let navCase be the return from callinggetNavigationCase()on theConfigurableNavigationHandler, passing the currentFacesContextas the first argument,null, as the second argument, and outcome as the third argument. If this returnsnull, log an informative error which includes the component id, and write the "disabled" attribute on the component markup, with the value oftrue. Otherwise obtain the encoded target URL using the following algorithm. Algorithm to obtain the encoded target URL  Let params be the Map<String, List<String>>to be passed toViewHandler.getBookmarkableURL(). Build this map up first from any childUIParametercomponents. These children must be processed in the order in which they appear as children. If multiple children with the same name are encountered, their values must appear in theList<String>in theMapentry with the same name, and appear in the list in the same order as their child order.Next, obtain any parameters included within the navigation case. Call getParameters()on navCase. The result will be aMap<String, List<String>>. If the result is non-nulland non-empty, iterate over the entries from the resultMapand, if no entry with the same name exists in params, set the value from the current entry as the value in the paramsMap.Let includeViewParams be the result of a logical OR of the results from calling isIncludeViewParams()on the argumentUIOutcomeTargetcomponent and callingisIncludeViewParamson navCase.Call getBookmarkableURL()on theViewHandler, passing the currentFacesContextas the first argument, the return from callinggetToViewId()as the second argument, params as the third argument, and includeViewParams as the last argument. The entire target URL string must be passed through a call to the encodeResourceURL()method of theExternalContext. The name of theUIParametergoes on the left hand side, and the value of theUIParameteron the right hand side. The name and the value must be URLEncoded. EachUIParameterinstance is separeted by an ampersand, as dictated in the URL spec. The final encoded result will be written out to the onclick attribute of the button as "window.location.href = ''". If the developer has specified a custom onlclick the window.location.href name/value pair will be appended at the end of the developer specified script. If the "fragment" attribute is specified, the value will be included at the end of the resulting URL preceded by a hash mark. If the "styleClass" attribute is specified, render its value as the value of the "class" attribute. If the "id" attribute is specified, follow the same steps as mentioned in the "General Notes on Encoding" regarding the "id" attribute for UIInput components. If the "disabled" attribute is specified, do not render the "onclick" element and assign the "disabled" attribute a value of true. | 
| link | Render an HTML "a" anchor element. The value of the component is rendered as the anchor text and the outcome of the component is used to determine the target URL rendered in the "href" attribute. Execute the Algorithm to obtain the URL to which the user-agent should issue a GET request when clicked. Any child UIParametercomponents whosedisableproperty isfalseare appended to the String to be output as the value of the "href" attribute as query parameters before rendering. The entire "href" string must be passed through a call to theencodeResourceURL()method of theExternalContext. The name of theUIParametergoes on the left hand side, and the value of theUIParameteron the right hand side. The name and the value must be URLEncoded. Note that the required url encoding is handled byResponseWrter.writeAttribute(). EachUIParameterinstance is separated by an ampersand, as dictated in the URL spec. If the "fragment" attribute is specified, the value will be included at the end of the resulting URL preceded by a hash mark. If the "styleClass" attribute is specified, render its value as the value of the "class" attribute. If the "id" attribute is specified, follow the same steps as mentioned in the "General Notes on Encoding" regarding the "id" attribute for UIInput components. If the "disabled" attribute is specified, do not render the HTML "a" anchor element or the "href" element. Instead, render a "span" element. If the "styleClass" attribute is specified, render its value as the value of the "class" attribute on the "span". Render any pass-through attributes on the "span". | 
| body | Render the markup for a <body>element.  Decode Behavior Encode Behavior  Render the starting <body>element tag. Just before rendering the closing</body>element tag, render any resources that have been targeted for this "body" element:  Obtain a UIViewRootinstance.Obtain a Listof component resources targeted for this "body" element with a call toUIViewRoot.getComponentResources()with theString "body"as the argument. Render the ending</body>element tag.Iterate over the returned ListofUIComponentinstances and callencodeAllon eachUIComponentinstance. Any attributes declared on the element must be passed through unmodified to the rendered output. | 
| doctype |  Render the markup for a <!DOCTYPE>declaration. Decode Behavior Encode Behavior Output an XML Doctype using the provided attributes. Output the literal text <!DOCTYPE. The "rootElement" attribute is required and must be rendered next. If the "public" attribute is defined, render the literal textPUBLICthen render the value of the attribute inside double quotes. If the "system" attribute is defined, render it next, inside double quotes. Close the doctype declaration with the literal text>. | 
| outputFormat | Render parameterized text. Obtain the style,styleClass,dir, andlangattributees from this component. If any are present, render a "span" element. Output thestyleClassattribute (if present) as the value of theclassattribute. Output thestyleattribute as the value of thestyleattribute. Output thedirandlangattributes as pass through attributes. Accrue a list of the values of all childUIParametercomponents of this component. If there are one or more accumulated parameter values, convert the list of parameter values to anObjectarray, callMessageFormat.format(), passing thevalueof this component as the first argument, and the array of parameter values as the second argument, and render the result. Otherwise, render thevalueof this component unmodified. | 
| head | Render the markup for a <head>element.  Decode Behavior Encode Behavior  Render the starting <head>element tag. Any attributes declared on the element must be passed through unmodified to the rendered output. At some point before rendering the closing</head>element tag, render any resources that have been targeted for this "head" element:  Note that due to the cascading nature of CSS files, the order in which these files have been added to the view must be preserved when rendering the references to the files within the <head>element. Also, the end result of the rendered<head>section must be that any CSS files referenced due to previous calls toaddComponentResource()do not adversely interfere with any CSS files manually placed in this section by the page author. Render the ending </head>element tag. | 
| outputLabel | Renders an HTML "label" element. Render the current value of the component as label text if it is specified. If a "for" attribute is specified, find the component specified by the value of the "for" attribute, and render its client id as the value of the "for" attribute. If "styleClass" attribute is specified, render its value as the value of the "class" attribute. | 
| outputLink | Render an HTML "a" anchor element. The value of the component is rendered as the value of the "href" attribute. Any child UIParameter components whose disableproperty isfalseare appended to the String to be output as the value of the "href" attribute as query parameters before rendering. The entire "href" string must be passed through a call to theencodeResourceURL()method of theExternalContext. The name of the UIParameter goes on the left hand side, and the value of the UIParameter on the right hand side. The name and the value must be URLEncoded. Note that the required url encoding is handled byResponseWrter.writeAttribute(). Each UIParameter instance is separeted by an ampersand, as dictated in the URL spec. If the "styleClass" attribute is specified, render its value as the value of the "class" attribute. If the "id" attribute is specified, follow the same steps as mentioned in the "General Notes on Encoding" regarding the "id" attribute for UIInput components. If the "disabled" attribute is specified, do not render the HTML "a" anchor element or the "href" element. Instead, render a "span" element. If the "styleClass" attribute is specified, render its value as the value of the "class" attribute on the "span". Render any pass-through attributes on the "span". | 
| outputText | If the "styleClass", "style", "dir" or "lang" attributes are present, render a "span" element. If the "styleClass" attribute is present, render its value as the value of the "class" attribute. If the "style" attribute is present, pass it thru. If the "escape" attribute is not present, or it is present and its value is "true" all angle brackets should be converted to the ampersand xx semicolon syntax when rendering the value of the "value" attribute as the value of the component. If the "escape" attribute is present and is "false" the value of the component should be rendered as text without escaping. | 
| outputScript | Render the markup for a <script>element that renders the scriptResourcespecified by the optionalnameattribute andlibraryattributes. The implementation of this renderer must have a @ListenerForannotation attached to it, at the class level, declaringPostAddToViewEvent.classas the value of thesystemEventClassattribute. The presence of this annotation on a renderer implies the renderer implementsComponentSystemEventListener, which this renderer must do. The implementation ofprocessEvent()must extract theUIComponentfrom the argument event and look for the presence of the key "target" in the component's attributeMap. If and only if such a key is present, the implementation ofprocessEvent()must pass the component toUIViewRoot.addComponentResource(). Decode Behavior Encode Behavior  Common Algorithm for Obtaining A Resource to Render  This algorithm is used by all resource renderers to obtain a Resourceinstance which is then rendered in a specific way depending on what kind of renderer is doing the encoding.  Look in the component attribute Mapfor a value under the key name.Look in the component attribute Mapfor a value under the key library. This attribute is optional, therefore, library may benull.Create the resource by calling Application.getResourceHandler.createResource(name, library);. Common Encode Behavior  This algorithm is used by all resource renderers to render the resource. encodeBegin()must take no action.
 Because this renderer returns truefromgetRendersChildren(), theencodeChildren() method must take the following action.  If there is no name attribute, and the argument componenthas no children, andProjectStageis notProjectStage.Production, add aFacesMessagefor this component's clientId to theFacesContextstating that if no name attribute is present, and no body content is present either, then the user should take action to correct this problem. In this case,encodeChildren()must take no further action.If there is no name attribute and the argument componentdoes have children, the renderer must ensure that those children are encoded as usual.If there is a name attribute and the argument componentdoes have children, the renderer must log a descriptive localized message stating that the child content will be ignored. The resource referenced by the name attribute will be rendered inencodeEnd().If there is a name attribute and the argument componentdoes not have children,encodeChildren()must take no action. encodeEnd()must take specific action based on the specific kind of resource being rendered.
 Use the algorithm Common Encode Behavior for encodeBegin(),encodeChildren()andgetRendersChildren(). For encodeEnd(), use the algorithm Common Algorithm for Obtaining A Resource to Render above to obtain a reference to theResourceto be encoded. If this is NOT the first time this Resourcehas been referenced on this request take no action and return. Render a script element. Call resource.getRequestPath(). If the result contains a query string, take care to handle it correctly. Pass the request path to a call toencodeResourceURL()on theExternalContext. Use the result as the value of the "src" attribute. Use the result from callingresource.getContentType()as the value of the "type" attribute. | 
| outputStylesheet | Render the markup for a <link>element that renders the styleResourcespecified by the optionalnameandlibraryattributes. Decode Behavior Encode Behavior  Use the algorithm Common Encode Behavior for encodeBegin(),encodeChildren()andgetRendersChildren(). For encodeEnd(), use the algorithm Common Algorithm for Obtaining A Resource to Render to obtain a reference to theResourceto be encoded. Output a <link>element. Use the result from callingresource.getRequestPath()as the value of the "href" attribute, the result from callingresource.getContentType()as the value of the "type" attribute, the literal string "stylesheet" as the value of the "rel" attribute, and the literal string "screen" as the value of the "media" attribute, and the value of the "media" attribute set to the value of the "media" attribute of this tag. The implementation of this renderer must have a @ListenerForannotation attached to it, at the class level, declaringPostAddToViewEvent.classas the value of thesystemEventClassattribute. The presence of this annotation on a renderer implies the renderer implementsComponentSystemEventListener, which this renderer must do. The implementation ofprocessEvent()must extract theUIComponentfrom the argument event pass it toUIViewRoot.addComponentResource(), specifying the literal string "head" as the last argument. The stylsheet renderer must ensure that any stylesheets are included in the <head> of the document.  | 
| panelGrid | Renders an HTML "table" element, conforming to the rules in the HTML 401 specification. Render the "caption" facet, if present, inside a "caption" element immediately below the "table" element. If the "captionClass" attribute is specified, render its value as the value of the "class" attribute on the "caption" element. If the "captionStyle" attribute is specified, render its value as the value of the "style" attribute on the "caption" element. If the "styleClass" attribute is specified, render its value as the value of the "class" attribute. Render the pass-through attributes in the table below. Render the "header" facet, if present, inside of "thead", "tr", and "th" elements, nested in that order. If the "headerClass" attribute is specifed, render its value as the value of the "class" attribute on the "th" element. Render "colgroup" as the value of the "scope" attribute. Render the value of the "columns" attribute as the value of the "colspan" attribute on the "th" element. Render the "footer" facet if present, using similar logic to the rendering of the "header", but replacing "thead" with "tfoot", "th" with "td", and "headerClass" with "footerClass". Render the children of the UIPanelcomponent inside of a "tbody" element. Render the children based on the value of the "columns" attribute, creating a new row each time a "columns" worth of children have been rendered. For the start of each row, render a "tr" element. Output the value of the "rowClasses" per the attribute description below. For each child, output a "td" element, attaching the value of the "columnClasses" attribute per the attribute description below. Recursively encode each child. Close out the "td" element. When done with the row, close out the "tr" element. If a child has "rendered==false" it is not rendered, and the column counter must not be incremented. | 
| panelGroup | Intended for use in situations when only one UIComponent child can be nested, such as in the case of facets. If the "style" or "styleClass" attributes are present, and the "layout" attribute is present with a value of "block", render a "div" element, outputting the value of the "style" attribute as the value of the "style" attribute and the value of the "styleClass" attribute as the value of the "class" attribute. Otherwise, if the "layout" attribute is not present, or the "layout" attribute contains a value other than "block", render a "span" element, outputting the value of the "style" attribute as the value of the "style" attribute, and the value of the "styleClass" attribute as the value of the "class" attribute. | 
| selectBooleanCheckbox | Renders an HTML "input" element of type "checkbox". Decode Behavior  Obtain the Mapfrom the "requestParameterMap" property of theExternalContext. If there is no entry in theMapfor the "clientId" of this component, pass "false" to thesetSubmittedValue()method of the component, which must be an instance ofEditableValueHolder. If there is an entry, and its value is equal, ignoring case and without quotes, to any of the Strings: "on", "yes" or "true" pass true to thesetSubmittedValue()method of the component. Encode Behavior   Render the clientId of the component as the value of the "name" attribute. If the current value of the component is "true", output the "checked" attribute (must be rendered as checked="checked"). If the "styleClass" attribute is specified, render its value as the value of the "class" attribute. | 
| selectManyCheckbox | Render an HTML checkbox list. Decode Behavior Encode Behavior  Render a "table" element. If the "styleClass" is specified, render the value of the "styleClass" attribute as the value of the "class" attribute on the "table" element. If the "style", or "border" attributes are specified, pass them thru and render their values as the "style" and "border" attributes on the "table", respectively. If the "layout" attribute is specified, and its value is "pageDirection", render the children elements vertically, otherwise horizontally, in the table. If any of the children are an instance of SelectItemGroup, render them as a nested table. Each of the children are ultimately rendererd as follows. Render an "input" element of "type" "checkbox" for each child component. Render the "name" attribute on the "input" element with the value of the clientIdof the component. Render an "id" attribute on the "input" element. Each "id" value must be unique. If the current SelectItem.isDisabled() returns true, render "disabled" as the value of the "disabled" attribute. Close out the "input" element. Render a "label" element. Render the "for" attribute of the "label" element whose value is the corresponding "input" element's "id" value. If the current checkbox would be rendered as being checked, and there is a "selectedClass" attribute, append a space, followed by the value of the "selectedClass" attribute to any existing "class" attribute value on the label element. Otherwise, render the value of the "selectedClass" attribute as the value of the "class" attribute on the label element. If the current checkbox would be rendered as being not checked, and there is a "unselectedClass" attribute, append a space, followed by the value of the "unselectedClass" attribute to any existing "class" attribute value on the label element. Otherwise, render the value of the "unselectedClass" attribute as the value of the "class" attribute on the label element. If the current checkbox would be rendered as being disabled, and there is a "disabledClass" attribute, append a space, followed by the value of the "disabledClass" attribute to any existing "class" attribute value on the label element. Otherwise, render the value of the "disabledClass" attribute as the value of the "class" attribute on the label element. If the current checkbox would be rendered as being enabled, and there is an "enabledClass" attribute, append a space, followed by the value of the "enabledClass" attribute to any existing "class" attribute value on the label element. Otherwise, render the value of the "enabledClass" attribute as the value of the "class" attribute on the label element. Close out the starting "label" element and render the label value from SelectItem.getLabel(). Close out the "label" element. As an exception to the general rules about how to handle the "id" attribute, render it as an attribute on the outer "table" element, the value of which is theclientIdof the component per the rules at the beginning of this specification. The value of the current SelectItem is rendered as the value of the "value" attribute. Coerce the value of the currently rendered child to the type of the parent UISelectMany value following the Expression Language coercion rules, before comparing the values. If the value of the enclosing UISelectMany matches the current value, render "checked" as the value of the "checked" attribute. See the "Rendering the option elements"  specification forListboxRendererfor more detail on how to render the "option" elements in this renderer. Note that this renderer does not supportSelectItemGroupelements, so the text that describes the rendering ofSelectItemGroupdoes not apply to this renderer. | 
| selectManyListbox | Render an HTML option list. Decode Behavior This section documents the decode behavior for all renderers that handle UISelectManyorUISelectOnecomponents.  Decode Behavior for UISelectManycomponents  Obtain the Mapfrom the "requestParameterValuesMap" property of theExternalContext. If theMapcontains an entry for the "clientId" of the component, pass the value of the entry, cast to aString [], to thesetSubmittedValue()method of the component, which must be anEditableValueHolder. If theMapdoes not contain an entry, create an emptyStringarray and callsetSubmittedValue()with it. Please check the javadoc for UISelectMany.getConvertedValue() for additional requirements for renderers that render this kind of component. Decode Behavior for UISelectOnecomponents  Obtain the Mapfrom the "requestParameterMap" property of theExternalContext. If there is aMapentry for the "clientId" property of the component, pass it to thesetSubmittedValue()method of the component. If theMapdoes not contain an entry, callsetSubmittedValue()passing an emptyStringas the argument. Encode Behavior  Render an HTML "select" element. Render the clientId of the component as the value of the "name" attribute. If the "styleClass" attribute is specified, render its value as the value of the "class" attribute on the "select" element. If the component is a UISelectManyinstance, render "multiple" as the value of the "multiple" attribute. If the "size" attribute is specified, render its value as the value of the "size" attribute. Otherwise use the number of items as the value of the "size" attribute. Rendering the "option" elements  The only valid children of this component are UISelectItemorUISelectItemsinstances. Iterate over the children of this component, and accrue a list ofjavax.faces.model.SelectIteminstances. If the current child is aSelectItemwhosenoSelctionPropertyistrue, and theUISelectOneorUISelectManyparent of this option has one or more selected values that are not the "no selection"SelectItem, and the component has a "hideNoSelectionLabel" attribute whose value istrue, then the current option, which is the "no selection" option, must not be rendered. If the current child is aUISelectItemcreate aSelectIteminstance from itsitemValue, itemLabel,itemEscaped, anditemDescriptionproperties, add it to the list. If the current child is aUISelectItemsinstance, call itsgetValue()method. If the result is aSelectItembean, add it to the list. If the result is an array ofSelectItembeans, add each one to the list. If the result is aCollectionofSelectItembeans, add each one to the list. If the result is aMap, create aSelectItembean for each entry in theMapusing the key as the label, the value as the value, andnullas the description. Iterate over the list of SelectItembeans. If the current element is aSelectItemGroup, render an "optgroup" element with a "label" attribute, the value of which is the "label" property from the current element, then callgetSelectItems()and render each element as below. If the current element is not aSelectItemGroup, render an "option" element. Follow the conversion rules in the spec to obtain a renderableStringfrom the "value" property of the current element, render that as the value of the "value" atribute. Now it is time to see if the current element is the selected value. Call itsgetSubmittedValue()method, casting the result to anObject [], otherwise the component must be aUISelectOneinstance, call itsgetSubmittedValue()method and create anObject []around the result. Determine the type of the resultant array, if the resultant array is non-null, otherwise the type isString. Coerce the current item value to this type following the Expression Language coercion rules. If the resultant array is non-null, we look in the array for a value that, when we pass the renderable value to itsequals()method, it returnstrue, meaning the current element is selected. If the resultant array isnull, if the component is aUISelectMany, call itsgetValue()method. If the result is aListobtain the values in the list as an array. Otherwise, the component must be aUISelectOneinstance. Call itsgetValue()method, which must be an Object array. Look for an element in the resultant array that, 1. when we pass the renderable value to itsequals()method, it returnstrue, or 2. if the renderable value is null, and there is a null element in the array, also conclude that the current element is selected. Otherwise the current element is not selected. Now, if the current value is selected, write out an HTML boolean property "selected". If the current SelectItem.isDisabled() returns true, render "disabled" as the value of the "disabled" attribute. If the value of theescapeproperty is true, use thewriteText()method ofResponseWriterto write out the value of thelabelproperty. Otherwise, use thewrite()method of theResponseWriterto do so. | 
| selectManyMenu | Render an HTML option list. Decode Behavior Encode Behavior  Render an HTML "select" element. Render the clientId of the component as the value of the "name" attribute. If the "styleClass" attribute is specified, render its value as the value of the "class" attribute on the "select" element. If the component to be rendered is a UISelectMany, render "multiple" as the value of the "multiple" attribute. Render "1" as the value of the "size" attribute. See the "Rendering the option elements"  specification for ListboxRendererfor more detail on how to render the "option" elements in this renderer. | 
| selectOneListbox | Render an HTML option list. Decode Behavior Encode Behavior  Render an HTML "select" element. Render the clientId of the component as the value of the "name" attribute. If the "styleClass" attribute is specified, render its value as the value of the "class" attribute on the "select" element. If the component to be rendered is a UISelectMany, render "multiple" as the value of the "multiple" attribute. If the "size" attribute is specified, render its value as the value of the "size" attribute. Otherwise use the number of items as the value of the "size" attribute. See the "Rendering the option elements"  specification for ListboxRendererfor more detail on how to render the "option" elements in this renderer. | 
| selectOneMenu | Render an HTML option list. Decode Behavior Encode Behavior  Render an HTML "select" element. Render the clientId of the component as the value of the "name" attribute. If the "styleClass" attribute is specified, render its value as the value of the "class" attribute on the "select" element. If the component to be rendered is a UISelectMany, render "true" as the value of the "multiple" attribute. Use the number of items as the value of the "size" attribute. See the "Rendering the option elements"  specification for ListboxRendererfor more detail on how to render the "option" elements in this renderer. | 
| selectOneRadio | Render a set of html "input" elements of type "radio". Decode Behavior Encode Behavior  Render a "table" element. If the "styleClass" is specified, render the value of the "styleClass" attribute as the value of the "class" attribute on the "table" element. If the "style", "border" attributes are specified, pass them thru and render their values as the "style" and "border" attributes on the "table", respectively.. If the "layout" attribute is specified, and its value is "pageDirection", render the children elements vertically, otherwise horizontally, in the table. If any of the children are an instance of SelectItemGroup, render them as a nested table. Each of the children are ultimately rendered as follows. Render an "input" element of "type" "radio" for each child component. Render the "name" attribute on the "input" element with the value of the clientIdof the component. Render an "id" attribute on the "input" element. Each "id" value must be unique. If the current SelectItem.isDisabled() returns true, render "disabled" as the value of the "disabled" attribute. Close out the "input" element. Render a "label" element. Render the "for" attribute of the "label" element whose value is the corresponding "input" element's "id" value. Render any "style" as the "class" attribute on the "label" element. Close out the starting "label" element and render the label value from SelectItem.getLabel(). Close out the "label" element. As an exception to the general rules about how to handle the "id" attribute, render it as an attribute on the outer "table" element, the value of which is theclientIdof the component per the rules at the beginning of this specification. Coerce the value of the currently rendered child to the type of the parent UISelectOne value using the Expression Language coercion rules before comparing the values. If the value of the currently rendered child is equal to the value of the parent UISelectOne, render an appropriate HTML boolean value indicating "checked" for the enclosing "input". See the "Rendering the option elements"  specification forListboxRendererfor more detail on how to render the "option" elements in this renderer. Note that this renderer does not supportSelectItemGroupelements, so the text that describes the rendering ofSelectItemGroupdoes not apply to this renderer. | 
| column | Renders a UIComponent that represents a single column of data within a parent UIDatacomponent. |