Package jadex.commons.gui
Class EditableListEvent
- java.lang.Object
-
- java.util.EventObject
-
- javax.swing.event.TableModelEvent
-
- jadex.commons.gui.EditableListEvent
-
- All Implemented Interfaces:
java.io.Serializable
public class EditableListEvent extends javax.swing.event.TableModelEvent
Event that is able to capture data of rows. Important for deletes.- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected java.lang.Object[]
data
The data.
-
Constructor Summary
Constructors Constructor Description EditableListEvent(javax.swing.table.TableModel source, int firstRow, int lastRow, int column, int type, java.lang.Object[] data)
Create a new editable list event.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.Object[]
getData()
Get all data.java.lang.Object
getData(int idx)
Get the data for a specific row.
-