Last change
on this file since 186 was
186,
checked in by keesvb, 12 years ago
|
added samples, assays and clinical data to bootstrap, modified clean data module linkage
|
-
Property svn:keywords set to
Date Author Rev
|
File size:
543 bytes
|
Line | |
---|
1 | package dbnp.studycapturing |
---|
2 | |
---|
3 | import dbnp.data.Term |
---|
4 | |
---|
5 | /** |
---|
6 | * Description of an event. Actual events are described by instances of the Event class. |
---|
7 | * For the moment, EventDescription is not linked to a specific study or user. |
---|
8 | * This means that the user can add events of all possible event types as defined by the (global) EventDescription collection. |
---|
9 | */ |
---|
10 | class EventDescription { |
---|
11 | |
---|
12 | String name |
---|
13 | String description |
---|
14 | Term classification |
---|
15 | Protocol protocol |
---|
16 | boolean isSamplingEvent |
---|
17 | |
---|
18 | static constraints = { |
---|
19 | classification(nullable: true) |
---|
20 | } |
---|
21 | |
---|
22 | } |
---|
Note: See
TracBrowser
for help on using the repository browser.