FileDocCategorySizeDatePackage
ColumnRecFrom.javaAPI DocAzureus 3.0.3.41768Thu Mar 01 23:47:30 GMT 2007com.aelitis.azureus.ui.swt.columns.recommend

ColumnRecFrom

public class ColumnRecFrom extends org.gudy.azureus2.ui.swt.views.table.utils.CoreTableColumn implements org.gudy.azureus2.plugins.ui.tables.TableCellAddedListener
author
TuxPaper
created
Jun 19, 2006

Fields Summary
String[]
SAMPLES
Constructors Summary
public ColumnRecFrom(String sTableID)


	   
		super("RecFrom", sTableID);
		setWidth(60);
		setAlignment(ALIGN_CENTER);
	
Methods Summary
public voidcellAdded(org.gudy.azureus2.plugins.ui.tables.TableCell cell)

		int i = (int) (Math.random() * SAMPLES.length);
		cell.setText(SAMPLES[i]);