Class RSSItemImpl
- java.lang.Object
-
- com.biglybt.pifimpl.local.utils.xml.rss.RSSItemImpl
-
-
Field Summary
Fields Modifier and Type Field Description private RSSChannelImpl
channel
private boolean
is_atom
private SimpleXMLParserDocumentNode
node
-
Constructor Summary
Constructors Modifier Constructor Description protected
RSSItemImpl(RSSChannelImpl _channel, SimpleXMLParserDocumentNode _node, boolean _is_atom)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getDescription()
java.net.URL
getLink()
SimpleXMLParserDocumentNode
getNode()
Gets the items underlying XML node for extraction of extensionsjava.util.Date
getPublicationDate()
java.lang.String
getTitle()
Get the item's title, null if not definedjava.lang.String
getUID()
-
-
-
Field Detail
-
channel
private final RSSChannelImpl channel
-
is_atom
private final boolean is_atom
-
node
private final SimpleXMLParserDocumentNode node
-
-
Constructor Detail
-
RSSItemImpl
protected RSSItemImpl(RSSChannelImpl _channel, SimpleXMLParserDocumentNode _node, boolean _is_atom)
-
-
Method Detail
-
getTitle
public java.lang.String getTitle()
Description copied from interface:RSSItem
Get the item's title, null if not defined
-
getDescription
public java.lang.String getDescription()
- Specified by:
getDescription
in interfaceRSSItem
-
getPublicationDate
public java.util.Date getPublicationDate()
- Specified by:
getPublicationDate
in interfaceRSSItem
-
getNode
public SimpleXMLParserDocumentNode getNode()
Description copied from interface:RSSItem
Gets the items underlying XML node for extraction of extensions
-
-