@Documented @Target(FIELD) @OVLTarget({FIELD,ACCESSORY,TYPE_USE}) @Retention(RUNTIME) public @interface Label
Overrides the identifier of the annotated field or trigger with the denoted label.
Two examples without Label annotation:
Two examples without Label annotation:
int integer_variable = 2;
CheckButton trigger1 : method(boolean);
The same examples with Label annotation:
@Label("Integer Variable") int integer_variable = 2;
@Label("is active") CheckButton trigger1 : method(boolean);
- Author:
- Dr. Peter Droste, Omix Visualization