Interface DBDataset

All Known Implementing Classes:
DBCategoryDataset, DBCategoryTableXYDataset, DBXYBarDataset, DBXYCategoryDataset, DBXYDataset

public interface DBDataset
  • Method Details

    • setLocalTable

      void setLocalTable​(ReplicatedTable localTable)
      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 with setLocalTable(ReplicatedTable).

      If an implementation of fireTableDataChanged() calls AbstractDataset.fireDatasetChanged(), or otherwise interacts with JFreeChart, then this method should only be called on the event dispatch thread. (See SwingUtilities.invokeLater().)

    • convertToNumber

      static Number convertToNumber​(Object value, DataColumn dataColumn)