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; /*from w w w .j av a 2 s .co m*/ import com.google.gson.annotations.Expose; public class Address { @Expose private String street; @Expose private String city; @Expose private String prov; @Expose private String pcode; public String getStreet() { return street; } public void setStreet(String street) { this.street = street; } public String getCity() { return city; } public void setCity(String city) { this.city = city; } public String getProv() { return prov; } public void setProv(String prov) { this.prov = prov; } public String getPcode() { return pcode; } public void setPcode(String pcode) { this.pcode = pcode; } }