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

panda.tool.codegen.lib.ftl Maven / Gradle / Ivy

<#function package_name clazz>
	<#local dot = clazz?last_index_of('.')/>
	<#if dot gt 1 >
		<#return clazz?substring(0, dot)/>
	<#else>
		<#return ""/>
	

<#function class_name clazz>
	<#local dot = clazz?last_index_of('.')/>
	<#if dot gte 0 >
		<#return clazz?substring(dot + 1, clazz?length)/>
	<#else>
		<#return ""/>
	




© 2015 - 2024 Weber Informatics LLC | Privacy Policy