Changeset 189 for trunk/grails-app/domain
- Timestamp:
- Feb 10, 2010, 5:35:11 PM (13 years ago)
- Location:
- trunk/grails-app/domain/dbnp
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/grails-app/domain/dbnp/clinicaldata/ClinicalAssay.groovy
r186 r189 1 1 package dbnp.clinicaldata 2 2 /** 3 * class description 4 * 5 * Revision information: 6 * $Rev$ 7 * $Author$ 8 * $Date$ 9 */ 3 10 class ClinicalAssay { 4 11 -
trunk/grails-app/domain/dbnp/studycapturing/EventDescription.groovy
r186 r189 7 7 * For the moment, EventDescription is not linked to a specific study or user. 8 8 * This means that the user can add events of all possible event types as defined by the (global) EventDescription collection. 9 * 10 * Revision information: 11 * $Rev$ 12 * $Author$ 13 * $Date$ 9 14 */ 10 class EventDescription { 11 15 class EventDescription implements Serializable { 12 16 String name 13 17 String description … … 17 21 18 22 static constraints = { 19 classification(nullable: true )23 classification(nullable: true, blank: true) 20 24 } 21 22 25 } -
trunk/grails-app/domain/dbnp/studycapturing/Protocol.groovy
r186 r189 8 8 * For the moment, there is one global Protocol store. From user experience, it should become clear if this store 9 9 * has to remain global or should be bound to specific templates, users, user groups or even studies. 10 * 11 * Revision information: 12 * $Rev$ 13 * $Author$ 14 * $Date$ 10 15 */ 11 class Protocol { 12 16 class Protocol implements Serializable { 13 17 String name 14 18 Term reference … … 16 20 static hasMany = [parameters : ProtocolParameter, compounds: Compound] 17 21 static constraints = { 18 reference(nullable: true )22 reference(nullable: true, blank: true) 19 23 } 20 21 22 24 } -
trunk/grails-app/domain/dbnp/studycapturing/Study.groovy
r188 r189 29 29 samplingEvents: SamplingEvent, 30 30 assays: Assay, 31 32 31 persons: StudyPerson, 32 publications: Publication 33 33 ] 34 34
Note: See TracChangeset
for help on using the changeset viewer.