package project;
/*
 * This class will represent a participant
 */
public class Participant {
	int id;
	int age;
	String gender;
	String ethnicity;
	String occupation;
	String country;
	String origin;
	String education;
	Interests interest;
	Relationships relationship;
	int relationshipFitnessValue;
	int newField;
	
	

	public Participant(){
		
	}

	public Participant(int id, int age, String gender, String ethnicity, String occupation, String country, String origin, String education){
		this.id = id;
		this.age = age;
		this.gender = gender;
		this.ethnicity = ethnicity;
		this.occupation = occupation;
		this.country = country;
		this.origin = origin;
		this.education = education;
		
	}


	public Interests getInterest() {
		return interest;
	}

	public void setInterest(Interests interest) {
		this.interest = interest;
	}

	public Relationships getRelationship() {
		return relationship;
	}

	public void setRelationship(Relationships relationship) {
		this.relationship = relationship;
	}

	public int getRelationshipFitnessValue() {
		return relationshipFitnessValue;
	}

	public void setRelationshipFitnessValue(int relationshipFitnessValue) {
		this.relationshipFitnessValue = relationshipFitnessValue;
	}

	public int getId() {
		return id;
	}


	public void setId(int id) {
		this.id = id;
	}


	public int getAge() {
		return age;
	}


	public void setAge(int age) {
		this.age = age;
	}


	public String getGender() {
		return gender;
	}


	public void setGender(String gender) {
		this.gender = gender;
	}


	public String getEthnicity() {
		return ethnicity;
	}


	public void setEthnicity(String ethnicity) {
		this.ethnicity = ethnicity;
	}


	public String getOccupation() {
		return occupation;
	}


	public void setOccupation(String occupation) {
		this.occupation = occupation;
	}


	public String getCountry() {
		return country;
	}


	public void setCountry(String country) {
		this.country = country;
	}


	public String getOrigin() {
		return origin;
	}


	public void setOrigin(String origin) {
		this.origin = origin;
	}


	public String getEducation() {
		return education;
	}


	public void setEducation(String education) {
		this.education = education;
	}

	@Override
	public String toString() {
		// TODO Auto-generated method stub
		return "id: "+id+" Age: "+age+" Gender: "+gender+" Ethinicity: "+ethnicity+ " Occupation: "+occupation+" Country: "+country+ "Origin: "+origin+" Education: "+education;
	}
	
	
}
