org.openxava.annotations
Annotation Type Actions
@Retention(value=RUNTIME)
@Target(value={FIELD,METHOD})
public @interface Actions
A group of @Action associated to the same member.
Applies to properties and references.
It allows to define a value different for @Action in each view.
Example:
@Actions({
@Action(forViews="DEFAULT", value= ... ),
@Action(forViews="Simple, VerySimple", value= ... ),
@Action(forViews="Complete", value= ... )
})
- Author:
- Javier Paniza
value
public abstract Action[] value