public abstract class RenderKitWrapper extends RenderKit implements FacesWrapper<RenderKit>
Provides a simple implementation of
RenderKit
that
can be subclassed by developers wishing to provide specialized
behavior to an existing RenderKit
instance. The default
implementation of all methods is to call through to the wrapped
RenderKit
.
Usage: extend this class and override getWrapped()
to
return the instance we are wrapping.
Usage: extend this class and push the implementation being wrapped to the
constructor and use getWrapped()
to access the instance being wrapped.