Back to project page android-contacts-loader-demo.
The source code is released under:
Apache License
If you think the Android project android-contacts-loader-demo 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.codepath.examples.contactloader; //from w ww. j a v a 2 s. co m public class ContactPhone { public String number; public String type; public ContactPhone(String number, String type) { this.number = number; this.type = type; } }