Wiki source code of JBND Client-Side Entity.java Template
Last modified by Florijan Stamenkovic on 2008/07/31 18:13
Show last authors
author | version | line-number | content |
---|---|---|---|
1 | {{code}} | ||
2 | |||
3 | // All custom logic should be stored in this class | ||
4 | // so it is not affected by changes in the model, | ||
5 | // Which will change the abstract superclass instead | ||
6 | |||
7 | #if ($entity.packageName) | ||
8 | package $entity.packageName; | ||
9 | #end | ||
10 | |||
11 | public class ${entity.classNameWithoutPackage} extends ${entity.prefixClassNameWithOptionalPackage} { | ||
12 | |||
13 | } | ||
14 | |||
15 | {{/code}} |