source: trunk/grails-app/domain/dbnp/studycapturing/Term.groovy @ 92

Last change on this file since 92 was 92, checked in by duh, 14 years ago
  • added sample template data in bootstrap
  • upgraded jQuery
  • improved study capture wizard
  • fixed selenium test
File size: 479 bytes
Line 
1package dbnp.studycapturing
2
3/**
4 * The Term object describes a term in the ontology that is referred to in other entities such as events.
5 * The Term object should point to an existing term in an online ontology, therefore instances of this class can also
6 * be seen as a cache of elements of the external ontology.
7 */
8class Term {
9
10    String name
11    Ontology ontology
12    String accession
13
14    static constraints = {
15    }
16
17  def String toString() {
18    return name
19  }
20
21
22}
Note: See TracBrowser for help on using the repository browser.