Package jakarta.faces.render
Class RenderKitFactory
- java.lang.Object
- 
- jakarta.faces.render.RenderKitFactory
 
- 
- All Implemented Interfaces:
- FacesWrapper<RenderKitFactory>
 
 public abstract class RenderKitFactory extends Object implements FacesWrapper<RenderKitFactory> see Javadoc of Faces Specification
- 
- 
Field SummaryFields Modifier and Type Field Description static StringHTML_BASIC_RENDER_KIT
 - 
Constructor SummaryConstructors Constructor Description RenderKitFactory()Deprecated.RenderKitFactory(RenderKitFactory delegate)
 - 
Method SummaryAll Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description abstract voidaddRenderKit(String renderKitId, RenderKit renderKit)abstract RenderKitgetRenderKit(FacesContext context, String renderKitId)abstract Iterator<String>getRenderKitIds()RenderKitFactorygetWrapped()If this factory has been decorated, the implementation doing the decorating may override this method to provide access to the implementation being wrapped.
 
- 
- 
- 
Field Detail- 
HTML_BASIC_RENDER_KITpublic static final String HTML_BASIC_RENDER_KIT - See Also:
- Constant Field Values
 
 
- 
 - 
Constructor Detail- 
RenderKitFactory@Deprecated public RenderKitFactory() Deprecated.
 - 
RenderKitFactorypublic RenderKitFactory(RenderKitFactory delegate) 
 
- 
 - 
Method Detail- 
getRenderKitpublic abstract RenderKit getRenderKit(FacesContext context, String renderKitId) 
 - 
getWrappedpublic RenderKitFactory getWrapped() If this factory has been decorated, the implementation doing the decorating may override this method to provide access to the implementation being wrapped. A default implementation is provided that returnsnull.- Specified by:
- getWrappedin interface- FacesWrapper<RenderKitFactory>
- Returns:
- the decorated RenderKitFactoryif this factory decorates another, ornullotherwise
- Since:
- 2.0
 
 
- 
 
-