Back to project page MMSUtility.
The source code is released under:
Apache License
If you think the Android project MMSUtility 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.sreid.mmsutility; //w ww.ja v a 2 s. c o m /** * Created by sean on 9/19/14. */ public class MMSContact { private String name; private String phoneType; private String phoneNumber; public String getName() { return name; } public void setName(String name) { this.name = name; } public String getPhoneType() { return phoneType; } public void setPhoneType(String phoneType) { this.phoneType = phoneType; } public String getPhoneNumber() { return phoneNumber; } public void setPhoneNumber(String phoneNumber) { this.phoneNumber = phoneNumber; } }