net.sf.bimbo
Annotation Type Input


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

Marks a field of your class as being an input element.

Author:
fcorneli

Optional Element Summary
 boolean multiline
          Will make the input field to be generated as a textarea to allow for multiline input.
 boolean password
          Will make the input field to be generated as password input element.
 java.lang.String value
          The optional label of the input field.
 

value

public abstract java.lang.String value
The optional label of the input field. If no label is given, the field name itself will be used as label.

Returns:
Default:
""

multiline

public abstract boolean multiline
Will make the input field to be generated as a textarea to allow for multiline input.

Returns:
Default:
false

password

public abstract boolean password
Will make the input field to be generated as password input element.

Returns:
Default:
false


Copyright © 2008 Frank Cornelis IT. All Rights Reserved.