@Retention(value=RUNTIME)
@Target(value={FIELD,METHOD})
public @interface Editors
@Editor
associated to the same member. Applies to properties, references and collections.
It allows to define a value different for @
in each view.Editor
Example:
@Editors({ @Editor(forViews="DEFAULT", value= ... ), @Editor(forViews="Simple, VerySimple", value= ... ), @Editor(forViews="Complete", value= ... ) })Since 6.1 @Editor is repeatable, so you don't need to use @Editors any more.
public abstract Editor[] value