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