Arguments

The generation parameters InterfaceEnum usually have several arguments separated by semicolons.

INI-Format

An argument, in turn, can stand alone or can be followed by an equal sign and a single option or several options separated by commas.

Entries in an LFET.Project.ini-file:
ide.Java.InterfaceEnum.1: Symbol=Double; Title; IncludeTagsTitle=Laufzeit, Transit Times +
ide.Java.InterfaceEnum.2: Symbol; Title=DoubleList; IncludeTagsText=$$enum02

 

  • The order, upper and lower case and "surrounding" spaces are irrelevant for both the keys and the values.

  • To improve readability, the colon can also be used after the generation parameter instead of the equal sign.

YAML format

The YAML-Notation enables parameters to be better structured and grouped.

Entries in an LFET.Project.yaml-file:
ide.Java:
  Interface:
   Enum:
     1:
       Symbol: Double
       Title: '""'
       IncludeTagsTitle:
         - Transit Time
         - Transit Times
     2:
       Symbol: '""'
       Title: DoubleList
       IncludeTagsText: $$enum02