posted 19 years ago
From JSF specification section 3.1.12
encodeBegin/Children/End methods are called during the Render Response phase of the request processing lifecycle, and have the responsibility of creating the response data
.......
Typically, this will involve generating markup for the output technology being supported, such as creating an HTML <input> element for a UIInput component. For clients that support it, the encode methods might also generate client-side scripting code (such as JavaScript), and/or stylesheets (such as CSS). The default implementations in UIComponentBase delegate to a corresponding Renderer, if the rendererType property is true, and do nothing otherwise.
Hence it's upto you, if you want - it will generate,
but by default - it doesn't !!!