Last change
on this file since 784 was
784,
checked in by duh, 10 years ago
|
|
-
Property svn:keywords set to
Author Rev Date
|
File size:
516 bytes
|
Line | |
---|
1 | package dbnp.studycapturing |
---|
2 | |
---|
3 | /** |
---|
4 | * TemplateFieldListItem Domain Class. Used to represent the list items in a STRINGLIST TemplateField. |
---|
5 | * |
---|
6 | * Revision information: |
---|
7 | * $Rev: 784 $ |
---|
8 | * $Author: duh $ |
---|
9 | * $Date: 2010-08-06 10:21:06 +0000 (vr, 06 aug 2010) $ |
---|
10 | */ |
---|
11 | class TemplateFieldListItem implements Serializable { |
---|
12 | |
---|
13 | // A TemplateFieldListItem always belongs to one TemplateField of TemplateFieldType STRINGLIST |
---|
14 | static belongsTo = [parent : TemplateField] |
---|
15 | |
---|
16 | /** The caption of the list item */ |
---|
17 | String name |
---|
18 | |
---|
19 | static constraints = { |
---|
20 | } |
---|
21 | |
---|
22 | String toString() { |
---|
23 | return name; |
---|
24 | } |
---|
25 | } |
---|
Note: See
TracBrowser
for help on using the repository browser.