org.openxava.annotations
Annotation Type Editors
@Retention(value=RUNTIME)
@Target(value={FIELD,METHOD})
public @interface Editors
A group of @Editor associated to the same member.
Applies to properties, references and collections.
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
value
public abstract Editor[] value