Package com.biglybt.pif.utils.xml.rss
Interface RSSChannel
-
- All Known Implementing Classes:
RSSChannelImpl
public interface RSSChannel
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getDescription()
Returns the mandatory descriptionRSSItem[]
getItems()
returns the items in the channeljava.net.URL
getLink()
Returns the mandatory linkSimpleXMLParserDocumentNode
getNode()
returns the underlying XML node for extraction of extensionsjava.util.Date
getPublicationDate()
Returns the *optional* publication datejava.lang.String
getTitle()
Returns the mandatory title
-
-
-
Method Detail
-
getTitle
java.lang.String getTitle()
Returns the mandatory title- Returns:
-
getDescription
java.lang.String getDescription()
Returns the mandatory description- Returns:
-
getLink
java.net.URL getLink()
Returns the mandatory link- Returns:
-
getPublicationDate
java.util.Date getPublicationDate()
Returns the *optional* publication date- Returns:
-
getItems
RSSItem[] getItems()
returns the items in the channel- Returns:
-
getNode
SimpleXMLParserDocumentNode getNode()
returns the underlying XML node for extraction of extensions- Returns:
-
-