Browse Source
- renamed RemoteRssItemsAdapter.updateFiles() to updateItems() - added RemoteRssSupplier interface - removed hard cast in openRemoteRss() and used RemoteRssSupplier - updated comment for RemoteRssActivity - RemoteRssActivity.init() now displays a message about configuring RSS feeds if no items are found - moved "(All recent)" hardcoded string to strings.xml - renamed RemoteRssFragment.torrentFiles to remoteRssItems - misc commenting changespull/313/head
twig
9 years ago
9 changed files with 57 additions and 38 deletions
@ -0,0 +1,12 @@
@@ -0,0 +1,12 @@
|
||||
package org.transdroid.core.gui.remoterss.data; |
||||
|
||||
import java.util.ArrayList; |
||||
|
||||
/** |
||||
* Interface for daemon adapters if they support remote RSS management. |
||||
* |
||||
* @author Twig |
||||
*/ |
||||
public interface RemoteRssSupplier { |
||||
ArrayList<RemoteRssChannel> getRemoteRssChannels(); |
||||
} |
Loading…
Reference in new issue