| java.lang.Object java.util.EventObject org.jaffa.components.lookup.MultiSelectLookupEvent
MultiSelectLookupEvent | public class MultiSelectLookupEvent extends EventObject (Code) | | A MultiSelect Lookup component generates this event, when row(s) are selected, and passes it to the registered Listener.
author: GautamJ |
Constructor Summary | |
public | MultiSelectLookupEvent(Object source, Object[] selectedRows) Creates a new instance of LookupMultiSelectEvent
Parameters: source - The object on which the Event initially occurred, typically the Lookup component. Parameters: selectedRows - The row(s) selected on the Lookup. |
MultiSelectLookupEvent | public MultiSelectLookupEvent(Object source, Object[] selectedRows)(Code) | | Creates a new instance of LookupMultiSelectEvent
Parameters: source - The object on which the Event initially occurred, typically the Lookup component. Parameters: selectedRows - The row(s) selected on the Lookup. The registered Listener will have to cast it to the appropriate DTO and extract the required values. |
getSelectedRows | public Object[] getSelectedRows()(Code) | | Getter for property selectedRows.
Value of property selectedRows. |
|
|