JBND Client-Side Entity.java Template

Last modified by Florijan Stamenkovic on 2008/07/31 18:13


// All custom logic should be stored in this class
// so it is not affected by changes in the model,
// Which will change the abstract superclass instead

#if ($entity.packageName)
package $entity.packageName;
#end

public class ${entity.classNameWithoutPackage} extends ${entity.prefixClassNameWithOptionalPackage} {

}