Back to project page App-Growth-Engine-Android-TabUI.
The source code is released under:
Apache License
If you think the Android project App-Growth-Engine-Android-TabUI listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.hookmobile.tabui; //w w w . j a v a 2 s . c o m import java.io.Serializable; class PhoneBookContact implements Serializable { private static final long serialVersionUID = 7850469092842777724L; private String name; private String id; private String phoneNumber; private boolean invited; public PhoneBookContact(String name, String id, String phoneNumber) { this(name, id, phoneNumber, false); } public PhoneBookContact(String name, String id, String phoneNumber, boolean invited) { this.name = name; this.id = id; this.phoneNumber = phoneNumber; this.invited = invited; } public String getName() { return name; } public void setName(String name) { this.name = name; } public String getId() { return id; } public void setId(String id) { this.id = id; } public String getPhoneNumber() { return phoneNumber; } public void setPhoneNumber(String phoneNumber) { this.phoneNumber = phoneNumber; } public boolean isInvited() { return invited; } public void setInvited(boolean invited) { this.invited = invited; } }