Uses of Class
org.jperdian.rss2.dom.RssChannel

Packages that use RssChannel
org.jperdian.rss2   
org.jperdian.rss2.dom   
org.jperdian.rss2.gui   
org.jperdian.rss2.gui.tree   
org.jperdian.rss2.gui.util   
org.jperdian.rss2.rendering   
 

Uses of RssChannel in org.jperdian.rss2
 

Methods in org.jperdian.rss2 that return RssChannel
 RssChannel RssParser.parse(java.net.URL sourceURL, RssChannel targetChannel)
          Transfers the given XML document into a value RssMessage object
 RssChannel RssParser.parse(org.w3c.dom.Document xmlDocument, RssChannel targetChannel)
          Transfers the given XML document into a value RssMessage object
protected  RssChannel RssParser.parseChannel(org.w3c.dom.Element channelElement, RssChannel channel)
          Parses the content of the given channel element, analyze it's content and generate a valid RssChannel object
 RssChannel RssClient.getData()
          Reads the data from the remote RSS source and create a new RssChannel object that contains the data that has been read
 

Methods in org.jperdian.rss2 with parameters of type RssChannel
 RssChannel RssParser.parse(java.net.URL sourceURL, RssChannel targetChannel)
          Transfers the given XML document into a value RssMessage object
 RssChannel RssParser.parse(org.w3c.dom.Document xmlDocument, RssChannel targetChannel)
          Transfers the given XML document into a value RssMessage object
protected  RssChannel RssParser.parseChannel(org.w3c.dom.Element channelElement, RssChannel channel)
          Parses the content of the given channel element, analyze it's content and generate a valid RssChannel object
 void RssClient.loadData(RssChannel channel)
          Loads the data into the given RssChannel
 void RssChannelUpdateListener.channelUpdated(RssChannel channel)
          Gets notification, that the channel was updated
 

Uses of RssChannel in org.jperdian.rss2.dom
 

Methods in org.jperdian.rss2.dom that return RssChannel
 RssChannel RssItem.getSource()
           
 

Methods in org.jperdian.rss2.dom with parameters of type RssChannel
 void RssItem.setSource(RssChannel source)
           
 

Uses of RssChannel in org.jperdian.rss2.gui
 

Methods in org.jperdian.rss2.gui that return RssChannel
 RssChannel RssChannelPanel.getChannel()
          Gets the channel for the current panel
 

Methods in org.jperdian.rss2.gui with parameters of type RssChannel
 void RssViewerFrame.requestDisplay(RssChannel channel)
          Opens a window for the current channel to be displayed
 void RssItemListTable.showChannel(RssChannel channel)
          Peforms a reload of the current channel data
 void RssContentPanel.showChannel(RssChannel channel)
          Shows the content of the current channel
static void RssChannelInfo.showInfo(RssChannel channel)
           
 

Constructors in org.jperdian.rss2.gui with parameters of type RssChannel
RssChannelPanel(RssChannel channel)
           
 

Uses of RssChannel in org.jperdian.rss2.gui.tree
 

Methods in org.jperdian.rss2.gui.tree that return RssChannel
 RssChannel RssChannelNode.getChannel()
          Gets the channel active for the current node
 

Methods in org.jperdian.rss2.gui.tree with parameters of type RssChannel
 void RssChannelTree.addChannel(java.lang.String keywords, RssChannel channel)
          Adds a new channel to the currently active tree
 

Constructors in org.jperdian.rss2.gui.tree with parameters of type RssChannel
RssChannelNode(RssChannel channel)
           
 

Uses of RssChannel in org.jperdian.rss2.gui.util
 

Methods in org.jperdian.rss2.gui.util with parameters of type RssChannel
static void RssIoHelper.saveContent(RssChannel channel)
           
 

Uses of RssChannel in org.jperdian.rss2.rendering
 

Methods in org.jperdian.rss2.rendering with parameters of type RssChannel
 java.lang.StringBuffer HtmlRenderer.renderChannel(RssChannel channel)
          Returns the content of the given channel
protected abstract  void HtmlRenderer.renderChannelHead(RssChannel channel, java.lang.StringBuffer buffer)
          Adds the content of the channels head to the given output buffer
protected abstract  void HtmlRenderer.renderChannelItem(RssChannel channel, RssItem item, int index, int totalItems, java.lang.StringBuffer buffer)
          Adds the content of the item to the given output buffer
protected  void HtmlRenderer.renderChannelBottom(RssChannel channel, java.lang.StringBuffer buffer)
          Adds the content of the channels footer to the given output buffer
protected  void Html3Renderer.renderChannelHead(RssChannel channel, java.lang.StringBuffer buffer)
           
protected  void Html3Renderer.renderChannelItem(RssChannel channel, RssItem item, int index, int totalItems, java.lang.StringBuffer buffer)