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

TableSelectedRowsListener

public abstract class TableSelectedRowsListener extends TableGroupRowRunner implements org.eclipse.swt.widgets.Listener
Listener primarily for Menu Selection. Implement run(TableRowCore) and it will get called for each row the user has selected.

Fields Summary
private final TableView
tv
protected org.eclipse.swt.widgets.Event
event
Event information passed in via the Listener. Accessible in run(TableRowSWT).
Constructors Summary
public TableSelectedRowsListener(TableView impl)

param
impl

		tv = impl;
	
Methods Summary
public voidhandleEvent(org.eclipse.swt.widgets.Event e)
Process the trapped event. This function does not need to be overidden.

param
e event information

		event = e;
		tv.runForSelectedRows(this);