source:
trunk/grails-app/domain/dbnp/studycapturing/SamplingEvent.groovy
@
84
Last change on this file since 84 was 84, checked in by keesvb, 13 years ago | |
---|---|
File size: 256 bytes |
Line | |
---|---|
1 | package dbnp.studycapturing |
2 | |
3 | /** |
4 | * The SamplingEvent class describes a sampling event, an event that also results in one or more samples. |
5 | */ |
6 | class SamplingEvent extends Event { |
7 | |
8 | static hasMany = [samples : Sample] |
9 | |
10 | static constraints = { |
11 | } |
12 | } |
Note: See TracBrowser
for help on using the repository browser.