Package jakarta.faces.render
Class RenderKit
java.lang.Object
jakarta.faces.render.RenderKit
- Direct Known Subclasses:
- RenderKitWrapper
see Javadoc of Faces Specification
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionvoidaddClientBehaviorRenderer(String type, ClientBehaviorRenderer renderer) abstract voidaddRenderer(String family, String rendererType, Renderer renderer) abstract ResponseStreamabstract ResponseWritercreateResponseWriter(Writer writer, String contentTypeList, String characterEncoding) Return anIteratorover the component-family entries supported by thisRenderKitinstance.abstract RenderergetRenderer(String family, String rendererType) getRendererTypes(String componentFamily) Return anIteratorover the renderer-type entries for the given component-family.abstract ResponseStateManager
- 
Constructor Details- 
RenderKitpublic RenderKit()
 
- 
- 
Method Details- 
addClientBehaviorRenderer
- 
addRenderer
- 
createResponseStream
- 
createResponseWriterpublic abstract ResponseWriter createResponseWriter(Writer writer, String contentTypeList, String characterEncoding) 
- 
getClientBehaviorRenderer
- 
getClientBehaviorRendererTypes
- 
getComponentFamiliesReturn an Iteratorover the component-family entries supported by thisRenderKitinstance.The default implementation of this method returns an empty Iterator- Returns:
- an iterator over the component families supported by this RenderKit.
- Since:
- 2.0
 
- 
getRenderer
- 
getRendererTypesReturn an Iteratorover the renderer-type entries for the given component-family.If the specified componentFamilyis not known to thisRenderKitimplementation, return an emptyIteratorThe default implementation of this method returns an empty Iterator- Parameters:
- componentFamily- one of the members of the- Iteratorreturned by- getComponentFamilies()
- Returns:
- an iterator over the renderer-type entries for the given component-family.
- Since:
- 2.0
 
- 
getResponseStateManager
 
-