source:
trunk/grails-app/domain/magetab/idf/Protocol.groovy
@
56
Last change on this file since 56 was 56, checked in by keesvb, 14 years ago | |
---|---|
File size: 265 bytes |
Line | |
---|---|
1 | package magetab.idf |
2 | |
3 | class Protocol { |
4 | |
5 | String name |
6 | String description |
7 | String software |
8 | String hardware |
9 | OntologyTerm type |
10 | |
11 | static hasMany = [ |
12 | parameters: Parameter |
13 | ] |
14 | |
15 | static constraints = { |
16 | type(nullable: true) |
17 | } |
18 | } |
Note: See TracBrowser
for help on using the repository browser.