com.ibm.dse.tools.workbench.gui
Class TableRowSelectionEvent

java.lang.Object
  |
  +--java.util.EventObject
        |
        +--com.ibm.dse.tools.workbench.gui.TableRowSelectionEvent

public class TableRowSelectionEvent
extends java.util.EventObject

This class is used to send TableRow selections from one component to the listeners.

See Also:
Serialized Form

Fields inherited from class java.util.EventObject
source
 
Constructor Summary
TableRowSelectionEvent(java.lang.Object source, TableRow[] rowSelection)
          This constructor creates a new TableRowSelectionEvent with the given source and row selection.
 
Method Summary
 TableRow[] getSelection()
          This method returns the TableRows selected.
 
Methods inherited from class java.util.EventObject
getSource, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

TableRowSelectionEvent

public TableRowSelectionEvent(java.lang.Object source,
                              TableRow[] rowSelection)
This constructor creates a new TableRowSelectionEvent with the given source and row selection.
Parameters:
source - java.lang.Object
rowSelection - com.ibm.dse.tools.workbench.base.TableRow[]
Method Detail

getSelection

public TableRow[] getSelection()
This method returns the TableRows selected.
Returns:
com.ibm.dse.tools.workbench.base.TableRow[]