Repository for the HealthTool which enables Apple users to analyse their health data from the Apple health app and prepares the data for contributing it for future studies on wearable data.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

59 lines
872 B

package application.helpers.wrappers;
/**
* This class wraps the occupation given by the user.
* @author Bianca
*
*/
public class Occupation
{
private String levelOne;
private String levelTwo;
private String levelThree;
private String levelFour;
public Occupation(String levelOne)
{
setLevelOne(levelOne);
}
public String getLevelOne()
{
return levelOne;
}
public void setLevelOne(String levelOne)
{
this.levelOne = levelOne;
}
public String getLevelTwo()
{
return levelTwo;
}
public void setLevelTwo(String levelTwo)
{
this.levelTwo = levelTwo;
}
public String getLevelThree()
{
return levelThree;
}
public void setLevelThree(String levelThree)
{
this.levelThree = levelThree;
}
public String getLevelFour()
{
return levelFour;
}
public void setLevelFour(String levelFour)
{
this.levelFour = levelFour;
}
}