Copyright (c) 2011, 2012, Digital Lizard (Oscar Key, Thomas Boby)
All rights reserved.
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the...
If you think the Android project BBC-News-Reader listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
Java Source Code
/*******************************************************************************
* BBC News Reader/*fromwww.java2s.com*/
* Released under the BSD License. See README or LICENSE.
* Copyright (c) 2011, Digital Lizard (Oscar Key, Thomas Boby)
* All rights reserved.
******************************************************************************/package com.digitallizard.bbcnewsreader;
import org.mcsoxford.rss.RSSItem;
publicinterface ResourceInterface {
publicvoid categoryRssLoaded(RSSItem[] items, String category); // called when the RSS has loaded
publicvoid reportError(int type, String msg, String error);
publicvoid rssLoadComplete(boolean successful);
publicvoid fullLoadComplete(boolean successful);
publicvoid itemDownloadComplete(boolean specific, int itemId, int type, Object download);
}