EmptyLines
ide.Java.EmptyLines = true | false (default = true)
In programming languages that allow empty source lines, LF‑ET generates empty lines by default between logically separated sections to improve readability:
Entry in an LFET.Project.ini-file:
ide.Java.EmptyLines = true
Result of program generation:
if (...)
{
statements for action A01
statements for action A02
statements for action A03
}
No blank lines are generated with the false value:
ide.Java.EmptyLines = false
Program generation output:
if (...)
{
statements for action A01
statements for action A02
statements for action A03
}
There are also programming languages in which empty source lines are not allowed at all. With the value false, the conversion of all blank lines into blank comment lines can be triggered.