source:
trunk/grails-app/domain/dbnp/studycapturing/TemplateField.groovy
@
139
Last change on this file since 139 was 136, checked in by keesvb, 13 years ago | |
---|---|
File size: 360 bytes |
Rev | Line | |
---|---|---|
[84] | 1 | package dbnp.studycapturing |
2 | ||
3 | /** | |
4 | * This is the superclass for template fields. Normally, this class will not be instantiated. | |
5 | */ | |
6 | abstract class TemplateField { | |
7 | String name | |
8 | TemplateFieldType type | |
[136] | 9 | String unit |
[84] | 10 | |
11 | static constraints = { | |
[136] | 12 | name(unique:true) |
13 | unit(nullable:true, blank:true) | |
[84] | 14 | } |
[92] | 15 | |
16 | def String toString() { | |
17 | return name | |
18 | } | |
[84] | 19 | } |
Note: See TracBrowser
for help on using the repository browser.