Back to project page FeedListViewDemo.
The source code is released under:
MIT License
If you think the Android project FeedListViewDemo 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 io.bxbxbai.androiddemos.data; /*w w w . j a v a 2s . c om*/ import com.google.gson.annotations.SerializedName; import java.io.Serializable; import java.util.List; /** * Created by baia on 14-9-14. */ public class FeedResult implements Serializable { @SerializedName("feed") private List<FeedItem> feedItems; public List<FeedItem> getFeedItems() { return feedItems; } private void setFeedItems(List<FeedItem> feedItems) { this.feedItems = feedItems; } }