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 w w .ja va 2 s . c o m*/ /** * RSS Feed Serialization Contract */ public class Rss { public String source; public Channel channel; public boolean isValid() { return channel != null && source != null && channel.hasItems(); } }