Last change
on this file since 784 was
784,
checked in by duh, 10 years ago
|
|
-
Property svn:keywords set to
Author Rev Date
|
File size:
334 bytes
|
Line | |
---|
1 | package dbnp.studycapturing |
---|
2 | |
---|
3 | /** |
---|
4 | * EventGroup groups events |
---|
5 | * |
---|
6 | * Revision information: |
---|
7 | * $Rev: 784 $ |
---|
8 | * $Author: duh $ |
---|
9 | * $Date: 2010-08-06 10:21:06 +0000 (vr, 06 aug 2010) $ |
---|
10 | */ |
---|
11 | class EventGroup extends Identity { |
---|
12 | String name |
---|
13 | |
---|
14 | static belongsTo = [parent : Study] |
---|
15 | static hasMany = [ |
---|
16 | subjects: Subject, |
---|
17 | events: Event, |
---|
18 | samplingEvents: SamplingEvent |
---|
19 | ] |
---|
20 | |
---|
21 | static constraints = { |
---|
22 | } |
---|
23 | } |
---|
Note: See
TracBrowser
for help on using the repository browser.