Back to project page RabbitEars.
The source code is released under:
MIT License
If you think the Android project RabbitEars 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.fbs.rabbitears.contracts.rss; /* w ww . jav a2 s. c o m*/ import com.google.gson.annotations.SerializedName; import java.util.Date; import java.util.List; /** * RSS Channel Serialization Contract */ public class Channel { public String title; public String link; public String description; public Image image; public Date lastBuildDate; @SerializedName("item") public List<Item> items; public boolean hasImage() { return image != null; } public boolean hasItems() { return items != null && items.size() > 0; } }