Android Open Source - MMSUtility M M S Contact






From Project

Back to project page MMSUtility.

License

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.

Java Source Code

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;
    }
}




Java Source Code List

com.sreid.mmsutility.MMSActivity.java
com.sreid.mmsutility.MMSContact.java
com.sreid.mmsutility.MMSUtility.java