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
 java.lang.String componentFamily
          The component family for which we should register.
 java.lang.String rendererType
          The renderer type under which we should register.
 
Optional Element Summary
 java.lang.String renderKitId
          The RenderKit identifier of the RenderKit with which we should register.
 

Element Detail

rendererType

public abstract java.lang.String rendererType

The renderer type under which we should register.


componentFamily

public abstract java.lang.String componentFamily

The component family for which we should register.

renderKitId

public abstract java.lang.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-2009 Apache Software Foundation. All Rights Reserved.