Package net.sf.jpluck.feed

Examples of net.sf.jpluck.feed.RSSFeed


      net.sf.jpluck.feed.Feed feed = null;
      if (rootName.equals("feed")) {
        // Atom feed
        feed = new AtomFeed(dom);
      } else {   
        feed = new RSSFeed(dom);
      }
      FeedFormatter formatter = new FeedFormatter(feed, settings);
      boolean generateBookmarks = ClientConfiguration.getDefault().isGenerateBookmarks();
      if (settings.isUsePageStructure()) {
        FeedItem[] items = feed.getItems();
View Full Code Here

TOP

Related Classes of net.sf.jpluck.feed.RSSFeed

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.