SPT Core API

com.sptci.echo2.table
Interface SelectionListener<D,S>

Type Parameters:
D - The class of the model object displayed in the table.
S - The class of the source component from which the event was triggered.
All Superinterfaces:
EventListener, Serializable

public interface SelectionListener<D,S>
extends EventListener, Serializable

A genericised EventListener used for receiving notifications of EventObject.

© Copyright 2007 Sans Pareil Technologies, Inc.

Version:
$Id: SelectionListener.java 4553 2008-12-24 10:34:16Z rakesh $
Author:
Rakesh Vidyadharan 2007-09-19

Method Summary
 void rowSelected(EventObject<D,S> event)
          Invoked when a row in the Table is selected.
 

Method Detail

rowSelected

void rowSelected(EventObject<D,S> event)
Invoked when a row in the Table is selected.

Parameters:
event - The event that represents the object that was selected in the table.

SPT Core API