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
 java.lang.Class forClass
          If specified, register this component as the default converter for a type.
 java.lang.String id
          The JSF converter id.
 

id

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

Default:
""

forClass

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

Default:
void.class


Copyright © 2011 Seam Framework. All Rights Reserved.