|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: REQUIRED | OPTIONAL | DETAIL: ELEMENT | |||||||||
@Retention(value=RUNTIME) @Target(value=METHOD) @Documented public @interface InputProperty
Declares that the bean property that corresponds to the annotated setter will be used as an input. The name of the input will be the name of the property.
When the element is processed, the value of the input will be injected
into the element through the setter and RIFE's type conversion will try to
convert the input's string value into the property type. An
InputInjectionException exception will be thrown if the
conversion failed.
Input| Optional Element Summary | |
|---|---|
String[] |
defaultValues
The default value of the input. |
String |
name
The expected name of the property. |
public abstract String name
This hasn't got any influence on the actual name that is being used for the property, but is used instead to ensure that the property name is the same as the one specified here. This is typically used to create a single point of declaration for the property name that can be referenced elsewhere and that is ensured to be correct.
public abstract String[] defaultValues
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: REQUIRED | OPTIONAL | DETAIL: ELEMENT | |||||||||