}
SimpleXMLParserDocumentNode node = item.getNode();
if(View.rss_info != null && !View.rss_info.isDisposed()){
item_torrent_hash = new TreeItem(item_rssitem,SWT.NULL);
item_torrent_hash.setText( " [hash] " + node.getChild(
"torrent_sha1" ).getValue());
item_torrent_hash.setBackground(item_rssitem.getBackground());
item_torrent_size = new TreeItem(item_rssitem,SWT.NULL);
item_torrent_size.setText( " [size] " + node.getChild(
"torrent_size" ).getValue());
item_torrent_size.setBackground(item_rssitem.getBackground());
item_torrent_seed = new TreeItem(item_rssitem,SWT.NULL);
item_torrent_seed.setText( " [seeders] " + node.getChild(
"torrent_seeders" ).getValue());
item_torrent_seed.setBackground(item_rssitem.getBackground());
item_torrent_leech = new TreeItem(item_rssitem,SWT.NULL);
item_torrent_leech.setText( " [leechers] " + node.getChild(
"torrent_leechers" ).getValue());
item_torrent_leech.setBackground(item_rssitem.getBackground());
}