org.apache.myfaces.buildtools.maven2.plugin.builder.annotation
Annotation Type JSFConverter


@Documented
@Target(value=TYPE)
@Retention(value=SOURCE)
public @interface JSFConverter

Used to define a jsf converter.

Version:
$Revision: 758513 $ $Date: 2009-03-25 23:02:16 -0500 (Wed, 25 Mar 2009) $
Author:
Leonardo Uribe (latest modification by $Author: lu4242 $)

Optional Element Summary
 java.lang.String bodyContent
          Indicate if the element accept inner elements or not.
 boolean configExcluded
          Indicate that this component should not be defined on faces-config.xml.
 java.lang.String desc
          Short description
 java.lang.String id
          Indicate the converterId which identifies this class.
 java.lang.String name
          The name of the component in a page (ex: x:mycomp).
 java.lang.String serialuidtag
          Serial uid that should be added on generated tag class
 java.lang.String tagClass
          The tag class used for this converter, if applies.
 java.lang.String tagSuperclass
          Tag super class that inherits the tag class
 

id

public abstract java.lang.String id
Indicate the converterId which identifies this class. If not defined, it tries to get the value of the field CONVERTER_ID.

Default:
""

name

public abstract java.lang.String name
The name of the component in a page (ex: x:mycomp).

Default:
""

tagClass

public abstract java.lang.String tagClass
The tag class used for this converter, if applies.

Default:
""

tagSuperclass

public abstract java.lang.String tagSuperclass
Tag super class that inherits the tag class

Default:
""

configExcluded

public abstract boolean configExcluded
Indicate that this component should not be defined on faces-config.xml. Anyway, if this is true or false does not have any significative impact.

Returns:
Default:
false

bodyContent

public abstract java.lang.String bodyContent
Indicate if the element accept inner elements or not.

Default:
""

desc

public abstract java.lang.String desc
Short description

Default:
""

serialuidtag

public abstract java.lang.String serialuidtag
Serial uid that should be added on generated tag class

Since:
1.0.3
Default:
""


Copyright © 2001-2009 The Apache Software Foundation. All Rights Reserved.