org.jboss.seam.annotations.faces
Annotation Type Converter


@Target(value=TYPE)
@Retention(value=RUNTIME)
@Documented
public @interface Converter

Allows a Seam component to act as a JSF converter. The annotated class must be a Seam component, and must implement javax.faces.convert.Converter.

Author:
Gavin King

Optional Element Summary
 Class forClass
          If specified, register this component as the default converter for a type.
 String id
          The JSF converter id.
 

id

public abstract String id
The JSF converter id. Default to the component name.

Default:
""

forClass

public abstract Class forClass
If specified, register this component as the default converter for a type.

Default:
void.class