org.openxava.annotations
Annotation Type Editors


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

A group of @Editor associated to the same property.

Applies to properties.

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

  @Editors({
    @Editor(forViews="DEFAULT", value= ... ),
    @Editor(forViews="Simple, VerySimple", value= ... ),
    @Editor(forViews="Complete", value= ... )
  })
 

Author:
Javier Paniza

Required Element Summary
 Editor[] value
           
 

Element Detail

value

public abstract Editor[] value