net.sf.bimbo
Annotation Type Output


@Retention(value=RUNTIME)
@Documented
@Target(value=FIELD)
public @interface Output

Marks a field of your class as output element.

All basic Java types like String, Integer, Float, Double can be used for output.

A field of type List will be rendered as a table. If the list item class field are themselves also annotated with Output these fields will be rendered as columns within the table.

Author:
fcorneli

Optional Element Summary
 java.lang.String value
          The optional label of the output element.
 boolean verbatim
          Used to enforce a verbatim output of the field value.
 

verbatim

public abstract boolean verbatim
Used to enforce a verbatim output of the field value.

Returns:
Default:
false

value

public abstract java.lang.String value
The optional label of the output element.

Returns:
Default:
""


Copyright © 2008 Frank Cornelis IT. All Rights Reserved.