Changeset 235 for trunk/grails-app/domain
- Timestamp:
- Mar 5, 2010, 12:32:58 PM (11 years ago)
- Location:
- trunk/grails-app/domain/dbnp/studycapturing
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/grails-app/domain/dbnp/studycapturing/ParameterStringListItem.groovy
r234 r235 8 8 name(nullable: false); 9 9 } 10 11 12 def String toString() { return name } 13 10 14 } -
trunk/grails-app/domain/dbnp/studycapturing/ProtocolParameter.groovy
r190 r235 15 15 Term reference 16 16 17 static hasMany = [listEntries : String] // to store the entries to choose from when the type is 'item from predefined list'17 static hasMany = [listEntries : ParameterStringListItem ] // to store the entries to choose from when the type is 'item from predefined list' 18 18 19 19 static constraints = {
Note: See TracChangeset
for help on using the changeset viewer.