FileDocCategorySizeDatePackage
TableGroupRowRunner.javaAPI DocAzureus 3.0.3.4676Mon Feb 19 16:47:26 GMT 2007com.aelitis.azureus.ui.common.table

TableGroupRowRunner

public abstract class TableGroupRowRunner extends Object
Used with {@link TableView#runForSelectedRows}

Fields Summary
private static final TableRowCore[]
EMPTY
Indicates whether this object supports multiple rows.
Constructors Summary
Methods Summary
public voidrun(TableRowCore row)
Code to run

param
row TableRowCore to run code against

	
public booleanrun(TableRowCore[] rows)
Code to run against multiple rows. Return true if this object supports it, false otherwise.

param
rows
return

		return false;
	
public booleansupportsMultipleRows()


	   
		return run(EMPTY);