org.japano.metadata.annotation
Annotation Type JapanoAttribute


@Target(value=METHOD)
@Documented
@Retention(value=SOURCE)
public @interface JapanoAttribute

Can be used in subclasses of PageNode to mark a mutator method as tag attribute.

Version:
$Id: JapanoAttribute.java,v 1.4 2005/09/27 21:30:51 fforw Exp $ SourceForge.net Logo
Author:
Sven Helmberger ( sven dot helmberger at gmx dot de )

Optional Element Summary
 java.lang.String name
          Name of the attribute to create for this class.
 boolean required
          Library to put the tag into.
 boolean rtExprValue
          If false, the attribute can't not contain an EL expression nor a traditional expression.
 

name

public abstract java.lang.String name
Name of the attribute to create for this class. If not set, the name will be derived from the property name of the mutator method..

Default:
"[unset]"

required

public abstract boolean required
Library to put the tag into.

Default:
false

rtExprValue

public abstract boolean rtExprValue
If false, the attribute can't not contain an EL expression nor a traditional expression.

Default:
true