Last change
on this file since 84 was
84,
checked in by keesvb, 12 years ago
|
updated domain classes: added comments, carried out some normalization
|
File size:
496 bytes
|
Line | |
---|
1 | package dbnp.studycapturing |
---|
2 | |
---|
3 | /** |
---|
4 | * Class describing a concrete application of a protocol (which goes with numbers/values for the protocol parameters). |
---|
5 | */ |
---|
6 | class ProtocolInstance { |
---|
7 | |
---|
8 | Protocol protocol |
---|
9 | |
---|
10 | // TODO: check how the values can be indexed so that they can be mapped to their respective parameters (should we should use maps here?) |
---|
11 | static hasMany = [stringParameterValues : String, numberParameterValues : double, listParameterValues: long] |
---|
12 | |
---|
13 | static constraints = { |
---|
14 | } |
---|
15 | } |
---|
Note: See
TracBrowser
for help on using the repository browser.