Last change
on this file since 145 was
145,
checked in by duh, 12 years ago
|
- wizard subjects page now build a table with features, does not work properly yet
- youtube autoplay help items are possible now
- development grouping page for selecting subjects and grouping them by dragging and dropping
|
File size:
583 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$ |
---|
12 | * $Author$ |
---|
13 | * $Date$ |
---|
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.