Back to project page bodyapps-android.
The source code is released under:
GNU Lesser General Public License
If you think the Android project bodyapps-android listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
/* * Copyright (c) 2014, Fashiontec (http://fashiontec.org) * Licensed under LGPL, Version 3/* w ww .ja v a2 s . com*/ */ package fossasia.valentina.bodyapp.models; import java.util.Date; /** * Model object for measurements to in save measurement list */ public class MeasurementListModel { private String ID; private int personID; private String personName; private String created; private String personEmail; public String getPersonEmail() { return personEmail; } public void setPersonEmail(String personEmail) { this.personEmail = personEmail; } public String getID() { return ID; } public void setID(String iD) { ID = iD; } public int getPersonID() { return personID; } public void setPersonID(int personID) { this.personID = personID; } public String getPersonName() { return personName; } public void setPersonName(String personName) { this.personName = personName; } public String getCreated() { return created; } public void setCreated(String created) { this.created = created; } }