Module omix.api

Annotation Type Label


@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:

int integer_variable = 2;

Label

CheckButton trigger1 : method(boolean);

Label

The same examples with Label annotation:

@Label("Integer Variable") int integer_variable = 2;

Label

@Label("is active") CheckButton trigger1 : method(boolean);

Label

Author:
Dr. Peter Droste, Omix Visualization
  • Required Element Summary

    Required Elements 
    Modifier and Type Required Element Description
    String value
    visible label for the annotated member
  • Element Details

    • value

      String value
      visible label for the annotated member
      Returns:
      label