Back to project page Android_Yellow_Pages_App_TDD.
The source code is released under:
Apache License
If you think the Android project Android_Yellow_Pages_App_TDD 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.tddrampup.models; /*w w w. jav a 2s . co m*/ import com.google.gson.annotations.Expose; /** * Created by WX009-PC on 2/21/14. */ public class Phone { @Expose private String npa; @Expose private String nxx; @Expose private String num; @Expose private String dispNum; @Expose private String type; public String getNpa() { return npa; } public void setNpa(String npa) { this.npa = npa; } public String getNxx() { return nxx; } public void setNxx(String nxx) { this.nxx = nxx; } public String getNum() { return num; } public void setNum(String num) { this.num = num; } public String getDispNum() { return dispNum; } public void setDispNum(String dispNum) { this.dispNum = dispNum; } public String getType() { return type; } public void setType(String type) { this.type = type; } }