FileDocCategorySizeDatePackage
StatUpItem.javaAPI DocAzureus 3.0.3.41944Sun Sep 23 04:55:20 BST 2007org.gudy.azureus2.ui.swt.views.tableitems.peers

StatUpItem

public class StatUpItem extends org.gudy.azureus2.ui.swt.views.table.utils.CoreTableColumn implements TableCellRefreshListener
author
Olivier
author
TuxPaper (2004/Apr/19: modified to TableCellAdapter)

Fields Summary
Constructors Summary
public StatUpItem(String table_id)
Default Constructor

    super("statup", ALIGN_TRAIL, POSITION_INVISIBLE, 65, table_id);
    setRefreshInterval(INTERVAL_LIVE);
  
Methods Summary
public voidrefresh(TableCell cell)

    PEPeer peer = (PEPeer)cell.getDataSource();
    long value = (peer == null) ? 0 : peer.getStats().getEstimatedUploadRateOfPeer();

    if (!cell.setSortValue(value) && cell.isValid())
      return;

    cell.setText(DisplayFormatters.formatByteCountToKiBEtcPerSec(value));