org.apache.shale.tiger.register
Annotation Type FacesRenderer


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

Class-level annotation indicating that this class should be registered as a JavaServer Faces Renderer under the parameters specified by our attributes.

ASSERTION - The annotated class implements Renderer.

Since:
1.0.1

Required Element Summary
 String componentFamily
          The component family for which we should register.
 String rendererType
          The renderer type under which we should register.
 
Optional Element Summary
 String renderKitId
          The RenderKit identifier of the RenderKit with which we should register.
 

Element Detail

rendererType

public abstract String rendererType

The renderer type under which we should register.


componentFamily

public abstract String componentFamily

The component family for which we should register.

renderKitId

public abstract String renderKitId

The RenderKit identifier of the RenderKit with which we should register. If not specified, we will register in the default HTML Basic RenderKit.

Default:
"HTML_BASIC"


Copyright © 2004-2007 Apache Software Foundation. All Rights Reserved.