Last change
on this file since 1426 was
1426,
checked in by work@…, 10 years ago
|
- Resolved part of improvement #225
- refactored the template model out of GSCF into the GDT (Grails Domain Templates) plugin version 0.0.1
- still work needs to be done (move template editor into gdt, etcetera)
- fix template owner
- some methods are missing from Template, but most of it works
|
-
Property svn:keywords set to
Author Date Rev
|
File size:
506 bytes
|
Line | |
---|
1 | package dbnp.studycapturing |
---|
2 | |
---|
3 | /** |
---|
4 | * The PersonAffiliation class is an attribute of a Person, it represents an affiliation where she/he works for. |
---|
5 | * PersonAffiliation is an independent list of affiliations, and does not neccessarily belong to one Person. |
---|
6 | * |
---|
7 | * Revision information: |
---|
8 | * $Rev: 1426 $ |
---|
9 | * $Author: work@osx.eu $ |
---|
10 | * $Date: 2011-01-21 18:37:02 +0000 (vr, 21 jan 2011) $ |
---|
11 | */ |
---|
12 | class PersonAffiliation extends nl.grails.plugins.gdt.Identity { |
---|
13 | |
---|
14 | String institute |
---|
15 | String department |
---|
16 | |
---|
17 | String toString() { "${institute} / ${department}" } |
---|
18 | |
---|
19 | static constraints = { |
---|
20 | } |
---|
21 | } |
---|
Note: See
TracBrowser
for help on using the repository browser.