Changeset 640
- Timestamp:
- Jul 2, 2010, 9:38:49 AM (11 years ago)
- Location:
- trunk/grails-app/domain/dbnp
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/grails-app/domain/dbnp/data/Term.groovy
r557 r640 15 15 */ 16 16 class Term implements Serializable { 17 static searchable = true 17 static searchable = { 18 [only: ['name']] 19 } 18 20 19 21 String name // BioPortal: label (preferred name) -
trunk/grails-app/domain/dbnp/studycapturing/Sample.groovy
r540 r640 8 8 */ 9 9 class Sample extends TemplateEntity { 10 static searchable = true 10 static searchable = { 11 [only: ['name']] 12 } 13 11 14 Subject parentSubject 12 15 SamplingEvent parentEvent -
trunk/grails-app/domain/dbnp/studycapturing/Study.groovy
r564 r640 10 10 */ 11 11 class Study extends TemplateEntity implements Serializable { 12 static searchable = true 12 static searchable = { 13 [only: ['title', 'Description']] 14 } 15 13 16 nimble.User owner 14 17 String title -
trunk/grails-app/domain/dbnp/studycapturing/Subject.groovy
r622 r640 13 13 */ 14 14 class Subject extends TemplateEntity implements Serializable { 15 static searchable = false 15 static searchable = { 16 [only: ['name']] 17 } 16 18 String name 17 19 Term species
Note: See TracChangeset
for help on using the changeset viewer.