Package com.illumon.iris.db.tables.utils
Interface DBDataset
- All Known Implementing Classes:
DBCategoryDataset
,DBCategoryTableXYDataset
,DBXYBarDataset
,DBXYCategoryDataset
,DBXYDataset
public interface DBDataset
-
Method Summary
Modifier and Type Method Description static Number
convertToNumber(Object value, DataColumn dataColumn)
void
fireTableDataChanged()
Notifies this DBDataset that the data in the table used as its data source has changed, or that the entire source table itself has changed (such as withsetLocalTable(ReplicatedTable)
.void
setLocalTable(ReplicatedTable localTable)
Sets the table from which this DBDataset will retrieve the chart data.
-
Method Details
-
setLocalTable
Sets the table from which this DBDataset will retrieve the chart data.- Parameters:
localTable
-
-
fireTableDataChanged
void fireTableDataChanged()Notifies this DBDataset that the data in the table used as its data source has changed, or that the entire source table itself has changed (such as withsetLocalTable(ReplicatedTable)
.If an implementation of
fireTableDataChanged()
callsAbstractDataset.fireDatasetChanged()
, or otherwise interacts with JFreeChart, then this method should only be called on the event dispatch thread. (SeeSwingUtilities.invokeLater()
.) -
convertToNumber
-