org.openxava.annotations
Annotation Type SearchActions


@Retention(value=RUNTIME)
@Target(value={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= ... )
  })
 

Author:
Javier Paniza

Required Element Summary
 SearchAction[] value
           
 

Element Detail

value

public abstract SearchAction[] value