Changeset 338 for trunk/grails-app/domain
- Timestamp:
- Apr 12, 2010, 3:11:34 PM (13 years ago)
- Location:
- trunk/grails-app/domain/dbnp/studycapturing
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/grails-app/domain/dbnp/studycapturing/TemplateEntity.groovy
r336 r338 332 332 * Return all templated fields defined in the underlying template of this entity 333 333 */ 334 def Set<TemplateField> giveFields() {334 def List<TemplateField> giveFields() { 335 335 return this.template.fields; 336 336 } -
trunk/grails-app/domain/dbnp/studycapturing/TemplateField.groovy
r300 r338 15 15 String comment // help string for the user interface 16 16 17 static hasMany = [listEntries : TemplateFieldListItem] // to store the entries to choose from when the type is 'item from predefined list' 17 List listEntries 18 static hasMany = [listEntries : TemplateFieldListItem] // to store the entries to choose from when the type is 'item from predefined list' 18 19 19 20 static constraints = {
Note: See TracChangeset
for help on using the changeset viewer.