org.openxava.annotations
Annotation Type OnSelectElementActions


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

A group of @OnSelectElementAction associated to the same collection.

Applies to collections.

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

  @OnSelectElementActions({
    @OnSelectElementAction(forViews="DEFAULT", value= ... ),
    @OnSelectElementAction(forViews="Simple, VerySimple", value= ... ),
    @OnSelectElementAction(forViews="Complete", value= ... )
  })
 

Author:
Javier Paniza

Required Element Summary
 OnSelectElementAction[] value
           
 

Element Detail

value

public abstract OnSelectElementAction[] value