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

com.gwtplatform.dispatch.rest.rebind.macros.vm Maven / Gradle / Ivy

There is a newer version: 1.6
Show newest version
#macro(commaIfNeeded $list)
#if($foreach.hasNext), #else#end
#end

#macro(printNull $element $value)
#set($null = "null")
#if($element)$value#else$null#end
#end

#macro(concatArguments $arguments1 $arguments2)
#if( "$arguments1" != "" && "$arguments2" != "" )$argumentsFromService,
$actionArguments#else$argumentsFromService$actionArguments#end
#end

#macro(importResources $bindings)
#foreach ($binding in $bindings)
import ${binding.getImplPackage()}.$binding.getImplName();
#end
#end




© 2015 - 2024 Weber Informatics LLC | Privacy Policy