public class DataModelEvent extends EventObject
DataModelEvent represents an event of interest to
registered listeners that occurred on the specified DataModel
.
source
Constructor and Description |
---|
DataModelEvent(DataModel model,
int index,
Object data)
Construct an event object that is associated with the specified
row index and associated data.
|
Modifier and Type | Method and Description |
---|---|
DataModel |
getDataModel()
Return the
DataModel that fired this event. |
Object |
getRowData()
Return the object representing the data for the specified row index,
or
null for no associated row data. |
int |
getRowIndex()
Return the row index for this event, or -1 for no specific row.
|
getSource, toString
public DataModelEvent(DataModel model, int index, Object data)
Construct an event object that is associated with the specified row index and associated data.
model
- The DataModel
on which this event occurredindex
- The zero relative row index for which this event occurred,
or -1 for no specific row associationdata
- Representation of the data for the row specified by
index
, or null
for no particular row datapublic DataModel getDataModel()
Return the DataModel
that fired this event.
DataModel
that fired this eventpublic Object getRowData()
Return the object representing the data for the specified row index,
or null
for no associated row data.
null
for no associated row datapublic int getRowIndex()
Return the row index for this event, or -1 for no specific row.
Copyright © 2019 Eclipse Foundation.
Use is subject to license terms.