Methods Summary |
---|
public java.lang.String | getDescription()
if ( node.getChild( "description" ) != null ){
return( node.getChild( "description" ).getValue());
}
return( null );
|
public java.net.URL | getLink()
if ( node.getChild( "link" ) != null ){
try{
return( new URL( node.getChild("link").getValue()));
}catch( MalformedURLException e ){
Debug.printStackTrace(e);
return( null );
}
}
return( null );
|
public org.gudy.azureus2.plugins.utils.xml.simpleparser.SimpleXMLParserDocumentNode | getNode()
return( node );
|
public java.util.Date | getPublicationDate()
if ( node.getChild( "pubdate" ) != null ){
return( RSSUtils.parseDate( node.getChild( "pubdate" ).getValue()));
}
return( null );
|
public java.lang.String | getTitle()
if ( node.getChild( "title" ) != null ){
return( node.getChild( "title" ).getValue());
}
return( null );
|