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

appfusepojo.PojoFields.ftl Maven / Gradle / Ivy

Go to download

This plugin is used with Maven to generate source or resource artifacts for extending the functionality of your AppFuse application.

There is a newer version: 2.0-m4
Show newest version
<#foreach field in pojo.getAllPropertiesIterator()>
    <#if pojo.getMetaAttribAsBool(field, "gen-property", true)> 
        <#if pojo.hasMetaAttribute(field, "field-description")>    
            /**${pojo.getFieldJavaDoc(field, 0)} */
        
        /** DOCUMENT ME! */
        ${pojo.getFieldModifiers(field)} ${pojo.getJavaTypeName(field, jdk5)} ${field.name}
        <#if pojo.hasFieldInitializor(field, jdk5)>
            = ${pojo.getFieldInitialization(field, jdk5)}
        ;
    





© 2015 - 2024 Weber Informatics LLC | Privacy Policy