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 ww . j av a 2s. c o m import com.google.gson.annotations.Expose; import java.util.ArrayList; import java.util.List; /** * Created by WX009-PC on 2/21/14. */ public class Products { @Expose private List<String> webUrl = new ArrayList<String>(); @Expose private List<Object> dispAd = new ArrayList<Object>(); @Expose private List<Object> photos = new ArrayList<Object>(); @Expose private List<Profile> profiles = new ArrayList<Profile>(); public List<String> getWebUrl() { return webUrl; } public void setWebUrl(List<String> webUrl) { this.webUrl = webUrl; } public List<Object> getDispAd() { return dispAd; } public void setDispAd(List<Object> dispAd) { this.dispAd = dispAd; } public List<Object> getPhotos() { return photos; } public void setPhotos(List<Object> photos) { this.photos = photos; } public List<Profile> getProfiles() { return profiles; } public void setProfiles(List<Profile> profiles) { this.profiles = profiles; } }