javax.faces.render
Annotation Type FacesRenderer


@Target(value=TYPE)
@Retention(value=RUNTIME)
@Inherited
public @interface FacesRenderer

Version:
$Revision: 1187700 $ $Date: 2011-10-22 07:19:37 -0500 (Sat, 22 Oct 2011) $
Author:
Simon Lessard (latest modification by $Author: bommel $)

Required Element Summary
 String componentFamily
          The value of this annotation attribute is taken to be the component-family which, in combination with rendererType() can be used to obtain a reference to an instance of this Renderer by calling RenderKit.getRenderer(java.lang.String, java.lang.String).
 String rendererType
          The value of this annotation attribute is taken to be the renderer-type which, in combination with componentFamily() can be used to obtain a reference to an instance of this Renderer by calling RenderKit.getRenderer(java.lang.String, java.lang.String).
 
Optional Element Summary
 String renderKitId
          The value of this annotation attribute is taken to be the render-kit-id in which an instance of this class of Renderer must be installed.
 

Element Detail

componentFamily

public abstract String componentFamily
The value of this annotation attribute is taken to be the component-family which, in combination with rendererType() can be used to obtain a reference to an instance of this Renderer by calling RenderKit.getRenderer(java.lang.String, java.lang.String).


rendererType

public abstract String rendererType
The value of this annotation attribute is taken to be the renderer-type which, in combination with componentFamily() can be used to obtain a reference to an instance of this Renderer by calling RenderKit.getRenderer(java.lang.String, java.lang.String).

renderKitId

public abstract String renderKitId
The value of this annotation attribute is taken to be the render-kit-id in which an instance of this class of Renderer must be installed.

Default:
"HTML_BASIC"


Copyright © 2012 The Apache Software Foundation. All Rights Reserved.