103104105106107108109110111112113
IFeed feed = (IFeed)obj; selectFeed(feed); } else if (obj instanceof IArticle) { IArticle article = (IArticle)obj; controller.selectArticle(article); } } /** * Selects feed and the best guide.
96979899100101102103104
HotResultItem item = (HotResultItem)o; String link = item.getHotlink(); IArticle article = item.getArticle(); GlobalController controller = GlobalController.SINGLETON; controller.selectArticle(article, link); } } }