All Downloads are FREE. Search and download functionalities are using the official Maven repository.

META-INF.templates.java.if-else.ftl Maven / Gradle / Ivy

The newest version!
<#list statements as statement>
	<#if statement_index == 0>
	if (${statement.test}) {
	<#else>
	} else <#if statement.test?exists>if (${statement.test})  { 
	
	<#list statement.statements as subStatement>
	${subStatement.code}
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy