Ignore:
Timestamp:
Jan 13, 2010, 1:55:45 PM (13 years ago)
Author:
keesvb
Message:

updated domain classes: added comments, carried out some normalization

File:
1 edited

Legend:

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

    r80 r84  
    11package dbnp.studycapturing
    22
     3/**
     4 * The ProtocolParameter class describes a protocol parameter, and belongs to the Protocol class.
     5 * Actual values of this parameter are stored in the corresponding field of the ProtocolInstance class.
     6 */
    37class ProtocolParameter {
    48
     
    913    Term reference
    1014
    11     static hasMany = [listEntries : String]
     15    static hasMany = [listEntries : String] // to store the entries to choose from when the type is 'item from predefined list'
    1216
    1317    static constraints = {
Note: See TracChangeset for help on using the changeset viewer.