Annotation Interface RemoveActions


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

Applies to @OneToMany/@ManyToMany collections.

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

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

    Required Elements
    Modifier and Type
    Required Element
    Description