Wiki source code of Scala Entity.java Template
Version 5.1 by Ravi Mendis on 2009/09/15 19:53
Show last authors
| author | version | line-number | content |
|---|---|---|---|
| 1 | {{code}} | ||
| 2 | |||
| 3 | #if ($entity.packageName) | ||
| 4 | package $entity.packageName | ||
| 5 | #end | ||
| 6 | |||
| 7 | import org.apache.log4j.Logger | ||
| 8 | |||
| 9 | class ${entity.classNameWithoutPackage} extends ${entity.prefixClassNameWithOptionalPackage} { | ||
| 10 | private lazy val logger = Logger.getLogger(this.getClass.getName) | ||
| 11 | } | ||
| 12 | |||
| 13 | object ${entity.classNameWithoutPackage} extends ${entity.prefixClassNameWithOptionalPackage} { | ||
| 14 | } | ||
| 15 | |||
| 16 | {{/code}} |