GNU GPL license
[codegen4j.git] / src / data / test04 / template / vo.vm
blob86b6bef2ee34fd2936abedfa1176649716834880
1 package $helpers.java.classPackage($source.file);
2  
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);
9 #end
10 #foreach ( $attribute in $model )
11    
12    public void set${helpers.java.firstToUpperCase($attribute.get(1))}($attribute.get(0) $attribute.get(1)) {
13        this.$attribute.get(1) = $attribute.get(1);
14    }
15    
16    public $attribute.get(0) get${helpers.java.firstToUpperCase($attribute.get(1))}() {
17        return $attribute.get(1);
18    }
19 #end