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; // ww w.j a v a2 s . c o m import com.google.gson.annotations.Expose; /** * Created by WX009-PC on 2/21/14. */ public class Profile { @Expose private String lang; @Expose private Keywords keywords; public String getLang() { return lang; } public void setLang(String lang) { this.lang = lang; } public Keywords getKeywords() { return keywords; } public void setKeywords(Keywords keywords) { this.keywords = keywords; } }