Last change
on this file since 1457 was
1457,
checked in by work@…, 11 years ago
|
- fixed missing imports caused by Intellij's smart refactoring... guess it's not that smart after all :)
|
-
Property svn:keywords set to
Rev Author Date
|
File size:
506 bytes
|
Line | |
---|
1 | package dbnp.studycapturing |
---|
2 | import org.dbnp.gdt.* |
---|
3 | |
---|
4 | /** |
---|
5 | * The PersonAffiliation class is an attribute of a Person, it represents an affiliation where she/he works for. |
---|
6 | * PersonAffiliation is an independent list of affiliations, and does not neccessarily belong to one Person. |
---|
7 | * |
---|
8 | * Revision information: |
---|
9 | * $Rev: 1457 $ |
---|
10 | * $Author: work@osx.eu $ |
---|
11 | * $Date: 2011-01-31 13:14:35 +0000 (ma, 31 jan 2011) $ |
---|
12 | */ |
---|
13 | class PersonAffiliation extends Identity { |
---|
14 | |
---|
15 | String institute |
---|
16 | String department |
---|
17 | |
---|
18 | String toString() { "${institute} / ${department}" } |
---|
19 | |
---|
20 | static constraints = { |
---|
21 | } |
---|
22 | } |
---|
Note: See
TracBrowser
for help on using the repository browser.