FileDocCategorySizeDatePackage
DownloadNameItem.javaAPI DocAzureus 3.0.3.42177Sun Sep 23 04:54:50 BST 2007org.gudy.azureus2.ui.swt.views.tableitems.peers

DownloadNameItem

public class DownloadNameItem extends org.gudy.azureus2.ui.swt.views.table.utils.CoreTableColumn implements org.gudy.azureus2.plugins.ui.tables.TableCellRefreshListener
author
Allan Crooks

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

		super("name", 250, table_id);
		this.setPosition(0);
		//setObfustication(true);
		setRefreshInterval(INTERVAL_LIVE);
		setType(TableColumn.TYPE_TEXT);
		setMinWidth(100);
	
Methods Summary
public voidrefresh(org.gudy.azureus2.plugins.ui.tables.TableCell cell)

		PEPeer peer = (PEPeer)cell.getDataSource();
		if (peer == null) {cell.setText(""); return;}
		PEPeerManager manager = peer.getManager();
		if (manager == null) {cell.setText(""); return;}
		cell.setText(manager.getDisplayName());