Package javax.faces.render


package javax.faces.render

Classes and interfaces defining the rendering model. The main class in this package is RenderKit. RenderKit vends a set of Renderer instances which provide rendering capability for a specific client device type.

  • Class
    Description
    A ClientBehaviorRenderer produces the client-side script that implements a ClientBehavior's client-side logic.
    The presence of this annotation on a class automatically registers the class with the runtime as a ClientBehaviorRenderer.
    The presence of this annotation on a class automatically registers the class with the runtime as a Renderer.
    A Renderer converts the internal representation of UIComponents into the output stream (or writer) associated with the response we are creating for a particular request.
    Provides a simple implementation of Renderer that can be subclassed by developers wishing to provide specialized behavior to an existing Renderer instance.
    RenderKit represents a collection of Renderer instances that, together, know how to render JavaServer Faces UIComponent instances for a specific client.
    RenderKitFactory is a factory object that registers and returns RenderKit instances.
    Provides a simple implementation of RenderKit that can be subclassed by developers wishing to provide specialized behavior to an existing RenderKit instance.
    ResponseStateManager is the helper class to StateManager that knows the specific rendering technology being used to generate the response.