source: trunk/grails-app/domain/dbnp/studycapturing/TemplateField.groovy @ 84

Last change on this file since 84 was 84, checked in by keesvb, 13 years ago

updated domain classes: added comments, carried out some normalization

File size: 245 bytes
Line 
1package dbnp.studycapturing
2
3/**
4 * This is the superclass for template fields. Normally, this class will not be instantiated.
5 */
6abstract class TemplateField {
7
8    String name
9    TemplateFieldType type
10 
11
12    static constraints = {
13    }
14}
Note: See TracBrowser for help on using the repository browser.