Changeset 643 for trunk/grails-app
- Timestamp:
- Jul 2, 2010, 12:45:21 PM (13 years ago)
- Location:
- trunk/grails-app/domain/dbnp
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/grails-app/domain/dbnp/data/Term.groovy
r640 r643 15 15 */ 16 16 class Term implements Serializable { 17 static searchable = { 18 [only: ['name']] 19 } 17 //static searchable = { [only: ['ontology']] } 20 18 21 19 String name // BioPortal: label (preferred name) -
trunk/grails-app/domain/dbnp/studycapturing/Sample.groovy
r640 r643 8 8 */ 9 9 class Sample extends TemplateEntity { 10 static searchable = { 11 [only: ['name']] 12 } 10 static searchable = { [only: ['name']] } 13 11 14 12 Subject parentSubject -
trunk/grails-app/domain/dbnp/studycapturing/Subject.groovy
r640 r643 13 13 */ 14 14 class Subject extends TemplateEntity implements Serializable { 15 static searchable = { 16 [only: ['name']] 17 } 15 16 static searchable = { [only: ['name']] } 18 17 String name 19 18 Term species
Note: See TracChangeset
for help on using the changeset viewer.