Interface.Annotations
|
Java, JavaScript, TypeScript, Python and Groovy |
ide.Java.Interface.Annotations = …
This parameter can be used to add annotations to the generated 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")