1 package $helpers.java.classPackage($source.file);
3 #set ( $classname = $source.name.substring(0, $source.name.indexOf(".")) )
5 public class $helpers.java.simpleName($source.file) {
6 #foreach ( $attribute in $model )
8 private $attribute.get(0) $attribute.get(1) = $attribute.get(2);
10 #foreach ( $attribute in $model )
12 public void set${helpers.java.firstToUpperCase($attribute.get(1))}($attribute.get(0) $attribute.get(1)) {
13 this.$attribute.get(1) = $attribute.get(1);
16 public $attribute.get(0) get${helpers.java.firstToUpperCase($attribute.get(1))}() {
17 return $attribute.get(1);