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.events; //from w w w . j ava2 s . co m /** * Feed Download Event */ public class FeedDownloadEvent extends Event<String> { /** * Constructor * @param xml String downloaded feed xml data */ public FeedDownloadEvent(String xml) { super(xml); } /** * Constructor * @param exception Exception download feed exception */ public FeedDownloadEvent(Exception exception) { super(exception); } }