Last change
on this file since 1202 was
1202,
checked in by t.w.abma@…, 10 years ago
|
- removed extra step and implemented a failed cells check in step 3 (missing mappings) which shows the failed ontologies in the table editor (might have to tune appearance)
|
File size:
446 bytes
|
Line | |
---|
1 | package dbnp.importer |
---|
2 | |
---|
3 | import dbnp.studycapturing.Identity |
---|
4 | |
---|
5 | /** |
---|
6 | * Cell Domain Class |
---|
7 | * |
---|
8 | * Every cell |
---|
9 | * |
---|
10 | * @author your email (+name?) |
---|
11 | * @since 2010mmdd |
---|
12 | * @package ??? |
---|
13 | * |
---|
14 | * Revision information: |
---|
15 | * $Rev$ |
---|
16 | * $Author$ |
---|
17 | * $Date$ |
---|
18 | */ |
---|
19 | |
---|
20 | class ImportCell extends Identity { |
---|
21 | MappingColumn mappingcolumn |
---|
22 | int entityidentifier |
---|
23 | String value |
---|
24 | |
---|
25 | static constraints = { |
---|
26 | } |
---|
27 | |
---|
28 | String toString() { |
---|
29 | return "`" + value + "`" |
---|
30 | } |
---|
31 | } |
---|
Note: See
TracBrowser
for help on using the repository browser.