Annotation Type RowActions


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

    Applies to @OneToMany/@ManyToMany collections.

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

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

      Required Elements 
      Modifier and Type Required Element Description
      RowAction[] value