Annotation Interface RemoveSelectedActions


@Retention(RUNTIME) @Target({FIELD,METHOD}) public @interface RemoveSelectedActions
A group of @RemoveSelectedAction associated to the same collection.

Applies to @OneToMany/@ManyToMany collections.

It allows to define a value different for @RemoveSelectedAction in each view.
Example:

  @RemoveSelectedActions({
    @RemoveSelectedAction(forViews="DEFAULT", value= ... ),
    @RemoveSelectedAction(forViews="Simple, VerySimple", value= ... ),
    @RemoveSelectedAction(forViews="Complete", value= ... )
  })
 
Since 6.1 @RemoveSelectedAction is repeatable, so you don't need to use @RemoveSelectedActions any more.
Author:
Javier Paniza