Uses of Class
org.eclipse.ecf.provider.rss.channel.RssFeed

Uses of RssFeed in org.eclipse.ecf.provider.rss.channel
 

Methods in org.eclipse.ecf.provider.rss.channel that return RssFeed
protected static RssFeed RSSParserBase.createFeed(org.w3c.dom.Element channel)
          Creates a RssFeed object from the Element representation.
 RssFeed RssItem.getFeed()
          Gets the owner feed of the item.
static RssFeed RssFeed.load(java.io.File fromFile)
          Reads a feed from the file specified as RSS feed.
 RssFeed RssFeed.merge(RssFeed mergeFeed)
          Merge specified RSS feed with this feed.
static RssFeed FeedParser.parse(byte[] b)
          Parse the content of the file specified as byte array.
static RssFeed FeedParser.parse(java.io.File file)
          Parse the content of the file specified as RSS feed.
static RssFeed FeedParser.parse(java.io.InputStream in)
          Parse the content given InputSource as RSS feed.
 

Methods in org.eclipse.ecf.provider.rss.channel with parameters of type RssFeed
static RssItem RSSParserBase.createItem(RssFeed feed, java.lang.String title, java.lang.String description, java.lang.String link)
          Creates an item with the specified owner feed, title, link and description.
 RssFeed RssFeed.merge(RssFeed mergeFeed)
          Merge specified RSS feed with this feed.
 void RssItem.setFeed(RssFeed feed)
          Sets the owner feed of the item.
 void RSSExporter_2_0.write(RssFeed feed)
          Writes the given feed to an implicit implementation dependent destination.
 

Constructors in org.eclipse.ecf.provider.rss.channel with parameters of type RssFeed
RssItem(RssFeed feed, java.lang.String title, java.lang.String description, java.lang.String link)
          Constructs an item with the specified owner feed, title, link and description.