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

META-INF.templates.java.write-text.ftl Maven / Gradle / Ivy

The newest version!
<#if value.literal>
  ${responseWriterVariable}.writeText(${value},null);
<#else>
{
	Object text = ${value};
	if (text != null) {
		${responseWriterVariable}.writeText(text, null); 
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy