Annotations

Java

ide.Java.Interface.Enum.Annotations = …

This parameter can be used to add annotations to the generated enums. Multiple annotations can be separated with commas.

The following entry in an LFET.Project.ini-file:
ide.Java.Interface.Enum.Annotations = javax.annotation.processing.Generated("LF-ET")
triggers the following annotation when generating the enums:
import javax.annotation.Generated;

@Generated("LF-ET")
enum ChartValue
{
In an LFET.Project.yaml-file enumerations can also be used:
ide.Java:
  Enabled: true

  Interface.Enum:
    Annotations:
    - javax.annotation.processing.Generated("LF-ET")