Ignore:
Timestamp:
Feb 11, 2010, 5:47:49 PM (13 years ago)
Author:
duh
Message:
  • temporary commit
  • rewriting grouping javascript
  • uncommented the bootstrap part I commented previously, it appeared to be a grails cache issue that was resolved after issuing a 'grails clean' command...
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/grails-app/domain/dbnp/studycapturing/AssayType.groovy

    r190 r192  
    33/**
    44 * Enum describing the different assay types (aka omics submodules).
     5 *
     6 * Revision information:
     7 * $Rev$
     8 * $Author$
     9 * $Date$
    510 */
    611public enum AssayType {
    7     TRANSCRIPTOMICS('Transcriptomics'),
    8     METABOLOMICS('Metabolomics'),
    9     CLINICAL_DATA('Clinical data')
     12        TRANSCRIPTOMICS('Transcriptomics'),
     13        METABOLOMICS('Metabolomics'),
     14        CLINICAL_DATA('Clinical data')
    1015
    11     String name
     16        String name
    1217
    13     AssayType(String name) {
    14      this.name = name
    15     }
     18        AssayType(String name) {
     19                this.name = name
     20        }
    1621
    17     static list() {
    18      [TRANSCRIPTOMICS, METABOLOMICS, CLINICAL_DATA]
    19     }
     22        static list() {
     23                [TRANSCRIPTOMICS, METABOLOMICS, CLINICAL_DATA]
     24        }
    2025
    21     /*def String toString() {
    22         return this.name
    23     }*/
    24 
     26        /*
     27        def String toString() {
     28                return this.name
     29        }
     30        */
    2531}
Note: See TracChangeset for help on using the changeset viewer.