ilog.ds
Class TableModelEvent
java.lang.Object
|
+--java.util.EventObject
|
+--ilog.ds.TableModelEvent
- All Implemented Interfaces:
- Serializable
- public class TableModelEvent
- extends EventObject
Event class used for TableModel creation event happening on a
TableDataSource
object.
- See Also:
IlTableDataSource
, Serialized Form
_columnInfos
protected IlTableColumnInfo[] _columnInfos
TableModelEvent
public TableModelEvent(Object source,
IlTableColumnInfo[] columnInfos)
- Constructor used to generate an event when a table is created on a table
data source.
- Parameters:
source
- The sender of the event (the TableDataSource
)columnInfo
- The model of the columns in the new table- See Also:
IlTableColumnInfo
,
IlTableDataSource
getColumnInfos
public IlTableColumnInfo[] getColumnInfos()
- Retrieves table column information such as:
- Number of columns (length of the array).
- Column headers.
- Class of the values contained in the columns.
- Whether columns are editable or not.
- See Also:
IlTableColumnInfo