Back to project page RssReader.
The source code is released under:
MIT License
If you think the Android project RssReader 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.vicmns.rssreader.interfaces; import java.util.List; import com.vicmns.rssreader.models.RssItem; public interface GetRssItemsCallbacks { public void onItemsDownloaded(List<RssItem> rssItemList); public void onConnectionError(); }