Uses of Class
jakarta.faces.render.RenderKit
-
Packages that use RenderKit Package Description jakarta.faces.context jakarta.faces.render -
-
Uses of RenderKit in jakarta.faces.context
Methods in jakarta.faces.context that return RenderKit Modifier and Type Method Description abstract RenderKit
FacesContext. getRenderKit()
Return theRenderKit
instance for the render kit identifier specified on ourUIViewRoot
, if there is one.RenderKit
FacesContextWrapper. getRenderKit()
The default behavior of this method is to callFacesContext.getRenderKit()
on the wrappedFacesContext
object. -
Uses of RenderKit in jakarta.faces.render
Subclasses of RenderKit in jakarta.faces.render Modifier and Type Class Description class
RenderKitWrapper
Methods in jakarta.faces.render that return RenderKit Modifier and Type Method Description abstract RenderKit
RenderKitFactory. getRenderKit(FacesContext context, String renderKitId)
Return aRenderKit
instance for the specified render kit identifier, possibly customized based on dynamic characteristics of the specifiedFacesContext
, if non-null
.RenderKit
RenderKitWrapper. getWrapped()
Methods in jakarta.faces.render with parameters of type RenderKit Modifier and Type Method Description abstract void
RenderKitFactory. addRenderKit(String renderKitId, RenderKit renderKit)
Register the specifiedRenderKit
instance, associated with the specifiedrenderKitId
, to be supported by thisRenderKitFactory
, replacing any previously registeredRenderKit
for this identifier.Constructors in jakarta.faces.render with parameters of type RenderKit Constructor Description RenderKitWrapper(RenderKit wrapped)
If this render kit has been decorated, the implementation doing the decorating should push the implementation being wrapped to this constructor.
-