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 w w.j ava 2 s . c om */ package fossasia.valentina.bodyapp.models; /** * Model object for person */ public class Person { private String email; private String name; private int gender;// 1 for male private int ID; public Person(String email, String name, int gender) { super(); this.email = email; this.name = name; this.gender = gender; } public String getEmail() { return email; } public void setEmail(String email) { this.email = email; } public String getName() { return name; } public void setName(String name) { this.name = name; } public int getGender() { return gender; } public void setGender(int gender) { this.gender = gender; } public int getID() { return ID; } public void setID(int iD) { ID = iD; } }