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 . jav a2s .c o m*/ import java.util.List; /** * * @author Poh Kah Kong * */ public class CountryCodesWithSelect { private List<CountryCode> countryCodes; private CountryCode select; public List<CountryCode> getCountryCodes() { return countryCodes; } public void setCountryCodes(List<CountryCode> countryCodes) { this.countryCodes = countryCodes; } public CountryCode getSelect() { return select; } public void setSelect(CountryCode select) { this.select = select; } }