org.openxava.annotations
Annotation Type SearchListConditions


@Retention(value=RUNTIME)
@Target(value={FIELD,METHOD})
public @interface SearchListConditions

A group of @SearchListCondition associated to the same reference or collection.

Applies to collections and references. It allows to define a value different for @SearchListCondition in each view.
Example:

  @SearchListConditions({
    @SearchListCondition(forViews="DEFAULT", value= ... ),
    @SearchListCondition(forViews="Simple, VerySimple", value= ... ),
    @SearchListCondition(forViews="Complete", value= ... )
  })
 

Author:
Federico Alcantara

Required Element Summary
 SearchListCondition[] value
           
 

Element Detail

value

public abstract SearchListCondition[] value