Annotation Interface SearchActions


@Retention(RUNTIME) @Target({FIELD,METHOD}) public @interface SearchActions
A group of @SearchAction associated to the same reference.

Applies to references.

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

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

    Required Elements
    Modifier and Type
    Required Element
    Description