Class RenderKit
- Direct Known Subclasses:
RenderKitWrapper
RenderKit represents a collection of Renderer
instances that, together, know how to render Jakarta Faces UIComponent
instances for a specific
client. Typically, RenderKit
s are specialized for some combination of client device type, markup language,
and/or user Locale
. A RenderKit
also acts as a Factory for associated Renderer
instances, which perform the actual rendering process for each component.
A typical Jakarta Faces implementation will configure one or more RenderKit
instances at web
application startup. They are made available through calls to the getRenderKit()
methods of
RenderKitFactory
. Because RenderKit
instances are shared, they must be implemented in a thread-safe
manner. Due to limitations in the current specification having multiple RenderKit
instances at play in
the same application requires a custom ViewHandler
instance that is aware of how to
deal with this case. This limitation will be lifted in a future version of the spec.
The RenderKit
instance must also vend a ResponseStateManager
instance, which is used in the
process of saving and restoring tree structure and state.
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoid
addClientBehaviorRenderer
(String type, ClientBehaviorRenderer renderer) Register the specifiedClientBehaviorRenderer
instance, associated with the specified componenttype
, to the set ofClientBehaviorRenderer
s registered with thisRenderKit
, replacing any previously registeredClientBehaviorRenderer
for this type.abstract void
addRenderer
(String family, String rendererType, Renderer renderer) abstract ResponseStream
Use the providedOutputStream
to create a newResponseStream
instance.abstract ResponseWriter
createResponseWriter
(Writer writer, String contentTypeList, String characterEncoding) Use the providedWriter
to create a newResponseWriter
instance for the specified (optional) content type, and character encoding.Return theClientBehaviorRenderer
instance most recently registered for the specifiedtype
, if any; otherwise, returnnull
.Return anIterator
over theClientBehaviorRenderer
types.Return anIterator
over the component-family entries supported by thisRenderKit
instance.abstract Renderer
getRenderer
(String family, String rendererType) Return theRenderer
instance most recently registered for the specified componentfamily
andrendererType
, if any; otherwise, returnnull
.getRendererTypes
(String componentFamily) Return anIterator
over the renderer-type entries for the given component-family.abstract ResponseStateManager
Return an instance ofResponseStateManager
to handle rendering technology specific state management decisions.
-
Constructor Details
-
RenderKit
public RenderKit()
-
-
Method Details
-
addRenderer
Register the specified
Renderer
instance, associated with the specified componentfamily
andrendererType
, to the set ofRenderer
s registered with thisRenderKit
, replacing any previously registeredRenderer
for this combination of identifiers.- Parameters:
family
- Component family of theRenderer
to registerrendererType
- Renderer type of theRenderer
to registerrenderer
-Renderer
instance we are registering- Throws:
NullPointerException
- iffamily
orrendererType
orrenderer
is null
-
getRenderer
Return the
Renderer
instance most recently registered for the specified componentfamily
andrendererType
, if any; otherwise, returnnull
.- Parameters:
family
- Component family of the requestedRenderer
instancerendererType
- Renderer type of the requestedRenderer
instance- Returns:
- the
Renderer
instance - Throws:
NullPointerException
- iffamily
orrendererType
isnull
-
getResponseStateManager
Return an instance of
ResponseStateManager
to handle rendering technology specific state management decisions.- Returns:
- the
ResponseStateManager
-
createResponseWriter
public abstract ResponseWriter createResponseWriter(Writer writer, String contentTypeList, String characterEncoding) Use the provided
Writer
to create a newResponseWriter
instance for the specified (optional) content type, and character encoding.Implementors are advised to consult the
getCharacterEncoding()
method of classServletResponse
to get the required value for the characterEncoding for this method. Since theWriter
for this response will already have been obtained (due to it ultimately being passed to this method), we know that the character encoding cannot change during the rendering of the response.- Parameters:
writer
- the Writer around which thisResponseWriter
must be built.contentTypeList
- an "Accept header style" list of content types for this response, ornull
if the RenderKit should choose the best fit. As of the current version, the values accepted by the Standard render-kit for this parameter include any valid "Accept header style" String that includes the Stringtext/html
,application/xhtml+xml
,application/xml
ortext/xml
. This may change in a future version. The RenderKit must support a value for this argument that comes straight from theAccept
HTTP header, and therefore requires parsing according to the specification of theAccept
header. Please see Section 14.1 of RFC 2616 for the specification of theAccept
header.characterEncoding
- such as "ISO-8859-1" for this ResponseWriter, ornull
if theRenderKit
should choose the best fit. Please see the IANA for a list of character encodings.- Returns:
- a new
ResponseWriter
. - Throws:
IllegalArgumentException
- if no matching content type can be found incontentTypeList
, no appropriate content type can be found with the implementation dependent best fit algorithm, or no matching character encoding can be found for the argumentcharacterEncoding
.
-
createResponseStream
Use the provided
OutputStream
to create a newResponseStream
instance.- Parameters:
out
- theOutputStream
around which to create theResponseStream
- Returns:
- the new
ResponseStream
-
getComponentFamilies
Return an
Iterator
over the component-family entries supported by thisRenderKit
instance.The default implementation of this method returns an empty
Iterator
- Returns:
- Return an
Iterator
over the component-family entries - Since:
- 2.0
-
getRendererTypes
Return an
Iterator
over the renderer-type entries for the given component-family.If the specified
componentFamily
is not known to thisRenderKit
implementation, return an emptyIterator
The default implementation of this method returns an empty
Iterator
- Parameters:
componentFamily
- one of the members of theIterator
returned bygetComponentFamilies()
.- Returns:
- an
Iterator
over the renderer-type - Since:
- 2.0
-
addClientBehaviorRenderer
Register the specified
ClientBehaviorRenderer
instance, associated with the specified componenttype
, to the set ofClientBehaviorRenderer
s registered with thisRenderKit
, replacing any previously registeredClientBehaviorRenderer
for this type.- Parameters:
type
- type of theClientBehaviorRenderer
to registerrenderer
-ClientBehaviorRenderer
instance we are registering- Throws:
NullPointerException
- iftype
orrenderer
is null- Since:
- 2.0
-
getClientBehaviorRenderer
Return the
ClientBehaviorRenderer
instance most recently registered for the specifiedtype
, if any; otherwise, returnnull
.- Parameters:
type
- type of the requestedClientBehaviorRenderer
instance- Returns:
- the
ClientBehaviorRenderer
instance - Throws:
NullPointerException
- iftype
isnull
- Since:
- 2.0
-
getClientBehaviorRendererTypes
Return an
Iterator
over theClientBehaviorRenderer
types.- Returns:
- an
Iterator
over theClientBehaviorRenderer
- Since:
- 2.0
-