Package | Description |
---|---|
ilog.views.chart.data |
Contains classes related to the Chart data model.
|
ilog.views.chart.datax.adapter |
Provides predefined bridges between data models.
|
ilog.views.chart.datax.flat.table |
Provides the flat table model interface and its default implementation.
|
ilog.views.chart.datax.flat.table.event |
Provides the events sent out by flat table models.
|
ilog.views.chart.event |
Provides interfaces and classes for dealing with different types of events fired by main Chart classes.
|
Modifier and Type | Method and Description |
---|---|
IlvFlatTableModel |
IlvTreeTableDataSource.getFlatTableModel()
Returns the flat-table-model view of this data source.
|
IlvFlatTableModel |
IlvTreeTableDataSource.getLastingFlatTableModel()
Returns the flat-table-model view of this data source.
|
Modifier and Type | Class and Description |
---|---|
class |
IlvDataSourceToFlatTableModel
This class implements an
IlvFlatTableModel , based on an
IlvDataSource . |
class |
IlvFlatListToFlatTableModel
This class implements an
IlvFlatTableModel , based on an
IlvFlatListModel . |
class |
IlvFlatSetToFlatTableModel
This class implements an
IlvFlatTableModel , based on an
IlvFlatSetModel . |
class |
IlvListToFlatTableModel
This class implements an
IlvFlatTableModel , based on a
Swing ListModel . |
class |
IlvTableToFlatTableModel
This class implements an
IlvFlatTableModel , based on a
Swing TableModel . |
class |
IlvTreeListToFlatTableModel
This class implements an
IlvFlatTableModel , based on an
IlvTreeListModel . |
class |
IlvTreeToFlatTableModel
This class implements an
IlvFlatTableModel , based on a
Swing TreeModel . |
Modifier and Type | Method and Description |
---|---|
IlvFlatTableModel |
IlvFlatTableToTableModel.getUnderlyingModel()
Returns the underlying model.
|
IlvFlatTableModel |
IlvFlatTableToListModel.getUnderlyingModel()
Returns the underlying model.
|
IlvFlatTableModel |
IlvFlatTableToFlatListModel.getUnderlyingModel()
Returns the underlying model.
|
Modifier and Type | Method and Description |
---|---|
void |
IlvFlatTableToTableModel.setUnderlyingModel(IlvFlatTableModel model)
Sets the underlying model.
|
void |
IlvFlatTableToListModel.setUnderlyingModel(IlvFlatTableModel model)
Sets the underlying model.
|
Constructor and Description |
---|
IlvFlatTableToFlatListModel(IlvFlatTableModel model)
Creates a model backed by a given
IlvFlatTableModel , with the same
columns. |
IlvFlatTableToFlatListModel(IlvFlatTableModel model,
IlvDataColumnInfo[] columns)
Creates a model backed by a given
IlvFlatTableModel , with the given columns. |
IlvFlatTableToFlatListModel(IlvFlatTableModel model,
IlvDataColumnInfo[] columns,
int eventsMaskHint)
Creates a model backed by a given
IlvFlatTableModel , with the given columns. |
IlvFlatTableToFlatListModel(IlvFlatTableModel model,
int eventsMaskHint)
Creates a model backed by a given
IlvFlatTableModel , with the same
columns. |
IlvFlatTableToListModel(IlvFlatTableModel model)
Creates a list model, initially representing the given
model . |
IlvFlatTableToTableModel(IlvFlatTableModel model)
Creates a table model, initially representing the given
model . |
Modifier and Type | Class and Description |
---|---|
class |
IlvAbstractFlatTableModel
This class is an implementation of the
IlvFlatTableModel
interface which handles the notification to listeners of the model. |
class |
IlvBasicFlatTableModel
This class is an implementation of the
IlvFlatTableModel
interface which handles the notification to listeners of the model and
the management of the columns. |
class |
IlvBufferFlatTableModel
This class implements an
IlvFlatTableModel that
buffers (caches) the data of a given IlvFlatTableModel . |
class |
IlvDefaultFlatTableModel
This class is the default implementation of the
IlvFlatTableModel interface. |
class |
IlvFilterFlatTableModel
This class is a base class for tabular models that encapsulate other
models.
|
Modifier and Type | Method and Description |
---|---|
IlvFlatTableModel |
IlvFilterFlatTableModel.getFilteredModel()
Returns the underlying model.
|
Modifier and Type | Method and Description |
---|---|
double |
IlvComputedColumnInfo.computeDoubleAt(IlvFlatTableModel model,
int rowIndex)
Returns the value for the cell at
rowIndex , as a numeric
value. |
Object |
IlvComputedColumnInfo.computeValueAt(IlvFlatTableModel model,
int rowIndex)
Returns the value for the cell at
rowIndex . |
void |
IlvFilterFlatTableModel.setFilteredModel(IlvFlatTableModel model)
Sets the underlying model.
|
Constructor and Description |
---|
IlvBufferFlatTableModel(IlvFlatTableModel model)
Creates a model that is fed by and caches the data of a given
IlvFlatTableModel . |
IlvFilterFlatTableModel(IlvFlatTableModel model)
Creates a filter model.
|
Modifier and Type | Method and Description |
---|---|
IlvFlatTableModel |
FlatTableModelEvent.getModel()
Returns the model this event comes from.
|
Constructor and Description |
---|
FlatTableModelEvent(IlvFlatTableModel source,
FlatTableModelEvent.Type type)
Creates an event.
|
FlatTableModelEvent(IlvFlatTableModel source,
FlatTableModelEvent.Type type,
int column,
boolean oldValue,
boolean newValue)
Creates an event.
|
FlatTableModelEvent(IlvFlatTableModel source,
FlatTableModelEvent.Type type,
int column,
IlvDataColumnInfo columnInfo)
Creates an event.
|
FlatTableModelEvent(IlvFlatTableModel source,
FlatTableModelEvent.Type type,
int firstRow,
int lastRow)
Creates an event.
|
FlatTableModelEvent(IlvFlatTableModel source,
FlatTableModelEvent.Type type,
int firstRow,
int lastRow,
int column)
Creates an event.
|
FlatTableModelEvent(IlvFlatTableModel source,
FlatTableModelEvent.Type type,
int column,
Object oldValue,
Object newValue)
Creates an event.
|
Modifier and Type | Method and Description |
---|---|
IlvFlatTableModel |
TreeTableDataSourceEvent.getNewFlatTableModel()
Returns the flat table model view provided by the data source after the
change occurred.
|
IlvFlatTableModel |
TreeTableDataSourceEvent.getOldFlatTableModel()
Returns the flat table model view provided by the data source before the
change occurred.
|
Constructor and Description |
---|
TreeTableDataSourceEvent(IlvTreeTableDataSource dataSource,
int changeMask,
IlvFlatTableModel oldFlatTable,
IlvFlatTableModel newFlatTable,
IlvFlatListModel oldFlat,
IlvFlatListModel newFlat,
IlvTreeListModel oldTree,
IlvTreeListModel newTree)
Creates a new
TreeTableDataSourceEvent . |
© Copyright Rogue Wave Software, Inc. 1997, 2018. All Rights Reserved.