| java.lang.Object net.jforum.util.rss.RSS
RSS | public class RSS (Code) | | Represents a RSS document
author: Rafael Steil version: $Id: RSS.java,v 1.4 2006/08/23 02:13:38 rafaelsteil Exp $ |
RSS | public RSS(String title, String description, String encoding, String link)(Code) | | Creates a new RSS document.
Parameters: title - The document title Parameters: description - The document description Parameters: encoding - The character encoding Parameters: link - The main document link |
addItem | public void addItem(RSSItem item)(Code) | | Add a new item to the RSS document
Parameters: entry - RSSItem object containing the item information |
getDescription | public String getDescription()(Code) | | Gets the document description
The document description |
getEncoding | public String getEncoding()(Code) | | Gets the document character encoding
The encoding |
getItens | public List getItens()(Code) | | Gets all RSSItem instances related
to this RSS document.
java.util.List with the entries |
getLink | public String getLink()(Code) | | Gets the main document link
The document link |
getTitle | public String getTitle()(Code) | | Gets he document title
The document title |
|
|