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

SavePathItem

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

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

    super("savepath", 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.getSaveLocation().toString());