Annotation Type ListActions


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

    Applies to @OneToMany/@ManyToMany collections.

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

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

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