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