source: trunk/grails-app/domain/dbnp/studycapturing/ProtocolInstance.groovy @ 81

Last change on this file since 81 was 81, checked in by keesvb, 13 years ago

updated domain classes: added event description, sample and assay

File size: 369 bytes
Line 
1package dbnp.studycapturing
2
3class ProtocolInstance {
4
5    Protocol protocol
6
7    // TODO: check how the values can be indexed so that they can be mapped to their respective parameters (should we should use maps here?)
8    static hasMany = [stringParameterValues : String, numberParameterValues : double, listParameterValues: long]
9
10    static constraints = {
11    }
12}
Note: See TracBrowser for help on using the repository browser.