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; // w ww .j a v a 2 s . co m import com.fbs.rabbitears.models.FeedItem; import java.util.List; /** * Item Process Event */ public class ItemProcessEvent extends Event<List<FeedItem>> { /** * Constructor * @param items List of FeedItem items processed */ public ItemProcessEvent(List<FeedItem> items) { super(items); } /** * Constructor * @param exception Exception process items exception */ public ItemProcessEvent(Exception exception) { super(exception); } }