FileDocCategorySizeDatePackage
TorrentPathItem.javaAPI DocAzureus 3.0.3.41918Tue May 30 22:39:14 BST 2006org.gudy.azureus2.ui.swt.views.tableitems.mytorrents

TorrentPathItem

public class TorrentPathItem extends org.gudy.azureus2.ui.swt.views.table.utils.CoreTableColumn implements TableCellRefreshListener, org.gudy.azureus2.ui.swt.debug.ObfusticateCellText
author
parg

Fields Summary
Constructors Summary
public TorrentPathItem(String sTableID)
Default Constructor

    super("torrentpath", 150, sTableID);
    setObfustication(true);
    setRefreshInterval(INTERVAL_LIVE);
  
Methods Summary
public java.lang.StringgetObfusticatedText(TableCell cell)

		return Debug.secretFileName(cell.getText());
	
public voidrefresh(TableCell cell)

    DownloadManager dm = (DownloadManager)cell.getDataSource();
    
    cell.setText((dm == null) ? "" : dm.getTorrentFileName());