⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 rssfeeddatasource.java

📁 RssFeed阅读器,可以任意加入删除管理任何RSS FEED,采用多性程打开你所关注的新闻内容。
💻 JAVA
字号:
/**
 * 
 */
package RssFeeds;

import java.util.Set;

/**
 * @author Jack
 *
 */
public interface RssFeedDataSource {
	
	/**
	 * Finalizes any resources used by the data source and
	 * ensures data is persisited.
	 */
	void close();

	/**
	 * Retrieves a set of feeds from the data source that are used 
	 * in the feed list.
	 * 
	 * @return 
	 * 		set of feed names.
	 */
	Set<String> feedSet();

	/**
	 * Retrieves a set of Items from the data source that are used
	 * in the item list.
	 * @param str
	 * 		the selected feed name
	 * @return 
	 * 		set of feed items.
	 */
	Set<String> itemSet(String str);
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -