Changeset 510 for trunk/grails-app/domain/dbnp/studycapturing/Study.groovy
- Timestamp:
- Jun 2, 2010, 4:38:09 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/grails-app/domain/dbnp/studycapturing/Study.groovy
r506 r510 21 21 * @return List 22 22 */ 23 23 static List<TemplateField> giveDomainFields() { return Study.domainFields } 24 24 25 26 27 28 29 30 31 32 33 34 25 static final List<TemplateField> domainFields = 26 [ 27 new TemplateField( 28 name: 'title', 29 type: TemplateFieldType.STRING), 30 new TemplateField( 31 name: 'startDate', 32 type: TemplateFieldType.DATE, 33 comment: 'Fill out the official start date or date of first action') 34 ] 35 35 36 36 static hasMany = [ … … 81 81 } 82 82 83 84 83 /** 85 84 * Return the unique Event templates that are used in this study
Note: See TracChangeset
for help on using the changeset viewer.