appfusepojo.PojoFields.ftl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of appfuse-maven-plugin Show documentation
Show all versions of appfuse-maven-plugin Show documentation
This plugin is used with Maven to generate source or resource artifacts for extending the
functionality of your AppFuse application.
<#foreach field in pojo.getAllPropertiesIterator()>
<#if pojo.getMetaAttribAsBool(field, "gen-property", true)>
<#if pojo.hasMetaAttribute(field, "field-description")>
/**${pojo.getFieldJavaDoc(field, 0)} */
#if>
/** DOCUMENT ME! */
${pojo.getFieldModifiers(field)} ${pojo.getJavaTypeName(field, jdk5)} ${field.name}
<#if pojo.hasFieldInitializor(field, jdk5)>
= ${pojo.getFieldInitialization(field, jdk5)}
#if>;
#if>
#foreach>