Back to project page SendContact.
The source code is released under:
MIT License
If you think the Android project SendContact 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 org.pravin.android.sendcontact; //from ww w . java2 s.co m public class ContactInfo { private long id; private String name; private String phoneNumber; public String getName() { return name; } public void setName(String name) { this.name = name; } public String getPhoneNumber() { return phoneNumber; } public void setPhoneNumber(String phoneNumber) { this.phoneNumber = phoneNumber; } public long getId() { return id; } public void setId(long id) { this.id = id; } }