Last change
on this file since 247 was
247,
checked in by duh, 12 years ago
|
|
-
Property svn:keywords set to
Author Rev Date
|
File size:
582 bytes
|
Line | |
---|
1 | package dbnp.data |
---|
2 | |
---|
3 | import dbnp.data.Ontology |
---|
4 | |
---|
5 | /** |
---|
6 | * The Term object describes a term in the ontology that is referred to in other entities such as events. |
---|
7 | * The Term object should point to an existing term in an online ontology, therefore instances of this class can also |
---|
8 | * be seen as a cache of elements of the external ontology. |
---|
9 | * |
---|
10 | * Revision information: |
---|
11 | * $Rev: 247 $ |
---|
12 | * $Author: duh $ |
---|
13 | * $Date: 2010-03-08 17:29:14 +0000 (ma, 08 mrt 2010) $ |
---|
14 | */ |
---|
15 | class Term implements Serializable { |
---|
16 | static searchable = true |
---|
17 | String name |
---|
18 | Ontology ontology |
---|
19 | String accession |
---|
20 | |
---|
21 | static constraints = { |
---|
22 | } |
---|
23 | |
---|
24 | def String toString() { |
---|
25 | return name |
---|
26 | } |
---|
27 | } |
---|
Note: See
TracBrowser
for help on using the repository browser.