Back to project page wiki-contacts-android.
The source code is released under:
Apache License
If you think the Android project wiki-contacts-android 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.kahkong.wikicontacts.modal; //from w w w .j a v a 2 s.c o m /** * * @author Poh Kah Kong * */ public class CountryCode { private int id; private String country; private String countryCode; private String isoCountryCode; public int getId() { return id; } public void setId(int id) { this.id = id; } public String getCountry() { return country; } public void setCountry(String country) { this.country = country; } public String getCountryCode() { return countryCode; } public void setCountryCode(String countryCode) { this.countryCode = countryCode; } public String getIsoCountryCode() { return isoCountryCode; } public void setIsoCountryCode(String isoCountryCode) { this.isoCountryCode = isoCountryCode; } }