📄 rssfeeddatasource.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 + -