Last change
on this file since 1440 was
1430,
checked in by work@…, 11 years ago
|
|
-
Property svn:keywords set to
Rev Author Date
|
File size:
448 bytes
|
Line | |
---|
1 | package dbnp.studycapturing |
---|
2 | |
---|
3 | /** |
---|
4 | * EventGroup groups events |
---|
5 | * |
---|
6 | * Revision information: |
---|
7 | * $Rev: 1430 $ |
---|
8 | * $Author: robert@isdat.nl $ |
---|
9 | * $Date: 2011-01-21 20:05:36 +0000 (vr, 21 jan 2011) $ |
---|
10 | */ |
---|
11 | class EventGroup extends nl.grails.plugins.gdt.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 | // Ensure that the event group name is unique within the study |
---|
23 | name(unique:['parent']) |
---|
24 | } |
---|
25 | } |
---|
Note: See
TracBrowser
for help on using the repository browser.