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

Field Summary
protected  IlTableColumnInfo[] _columnInfos
           
 
Fields inherited from class java.util.EventObject
source
 
Constructor Summary
TableModelEvent(Object source, IlTableColumnInfo[] columnInfos)
          Constructor used to generate an event when a table is created on a table data source.
 
Method Summary
 IlTableColumnInfo[] getColumnInfos()
          Retrieves table column information such as: Number of columns (length of the array).
 
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
 

Field Detail

_columnInfos

protected IlTableColumnInfo[] _columnInfos
Constructor Detail

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
Method Detail

getColumnInfos

public IlTableColumnInfo[] getColumnInfos()
Retrieves table column information such as:
See Also:
IlTableColumnInfo