Interface.Annotations

Java, JavaScript, Type­Script, Python and Groovy

ide.<ProgrammingLanguage>.Interface.Annotations = …

This parameter can be used to add annotations to the ge­ne­ra­ted interfaces. Multiple annotations are also possible, separated by commas.

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

@Generated("LF-ET")
public interface OnlineOrderPaymentOptions_Iface
{
Enumerations can also be used in an LFET.Project.yaml-file:
ide.Java:
  Enabled: true

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