comparison src/de/mpiwg/anteater/events/Applicant.java @ 0:036535fcd179

anteater
author jdamerow
date Fri, 14 Sep 2012 10:30:43 +0200
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:036535fcd179
1 package de.mpiwg.anteater.events;
2
3 import java.util.List;
4
5 import de.mpiwg.anteater.persons.APerson;
6 import de.mpiwg.anteater.results.ApplicantResult;
7
8 public class Applicant {
9
10 private ApplicantResult applicantResult;
11 private APerson applicant;
12 private List<Location> locations;
13 private List<Location> applicantInstitution;
14
15 public ApplicantResult getApplicantResult() {
16 return applicantResult;
17 }
18 public void setApplicantResult(ApplicantResult applicantResult) {
19 this.applicantResult = applicantResult;
20 }
21 public List<Location> getLocation() {
22 return locations;
23 }
24 public void setLocation(List<Location> locations) {
25 this.locations = locations;
26 }
27 public APerson getApplicant() {
28 return applicant;
29 }
30 public void setApplicant(APerson applicant) {
31 this.applicant = applicant;
32 }
33 public List<Location> getApplicantInstitution() {
34 return applicantInstitution;
35 }
36 public void setApplicantInstitution(List<Location> applicantInstitution) {
37 this.applicantInstitution = applicantInstitution;
38 }
39
40 }