| |||||||
FRAMES NO FRAMES |
Renders a facet at this particular point in the composite component PDL page.
Decode Behavior
No action is required during decode for this renderer.
Encode Behavior
encodeBegin()
and encodeEnd()
must take no action for this renderer. Due to the specification of the <composite:insertChildren>
tag handler, the component passed to the encodeChildern()
method of this renderer will be the component with component-family
javax.faces.Output
and renderer-type
equal to the one for this renderer. The implementation of encodeBegin()
, must obtain the component attribute value under the key given by the value of the symbolic constant UIComponent.FACETS_KEY
from the attributes map of the argument component. If not found, throw IOException
. This value is referred to as "facetName" for discission. Find the closest ancestor composite component in which the argument component is nested. If no such component can be found, thow IOException
. Otherwise, get the facet whose name is "facetName". If found call encodeAll()
on the facet.
Tag Information | |
Tag Class | .OutputCompositeFacetTag |
TagExtraInfo Class | None |
Body Content | JSP |
Display Name | None |
Attributes | ||||
Name | Required | Request-time | Type | Description |
converter | false | false | javax.el.ValueExpression
(must evaluate to javax.faces.convert.Converter )
| Converter instance registered with this component. |
id | false | true | java.lang.String | The component identifier for this component. This value must be unique within the closest parent component that is a naming container. |
rendered | false | false | javax.el.ValueExpression
(must evaluate to boolean )
| Flag indicating whether or not this component should be rendered (during Render Response Phase), or processed on any subsequent form submit. The default value for this property is true. |
value | false | false | javax.el.ValueExpression
(must evaluate to java.lang.Object )
| The current value of this component. |
binding | false | false | javax.el.ValueExpression
(must evaluate to javax.faces.component.UIComponent )
| The ValueExpression linking this component to a property in a backing bean |
Variables | No Variables Defined. |
| |||||||
FRAMES NO FRAMES |