Wiki source code of Client-Side Entity.java Template
Version 6.1 by David Avendasora on 2008/03/05 17:21
Show last authors
| author | version | line-number | content |
|---|---|---|---|
| 1 | {{code}} | ||
| 2 | |||
| 3 | #if ($entity.packageName) | ||
| 4 | package $entity.packageName; | ||
| 5 | |||
| 6 | #end | ||
| 7 | import org.apache.log4j.Logger; | ||
| 8 | |||
| 9 | public class ${entity.classNameWithoutPackage} extends ${entity.prefixClassNameWithOptionalPackage} { | ||
| 10 | private static Logger log = Logger.getLogger(${entity.classNameWithoutPackage}.class); | ||
| 11 | } | ||
| 12 | |||
| 13 | {{/code}} |