Schnittstelle BaseDataset

Alle Superschnittstellen:
Serializable
Alle bekannten Unterschnittstellen:
GanttDataset, PieDataset, StandardDataset, StockDataset, XYDataset
Alle bekannten Implementierungsklassen:
ForAllRecordsDataset, ForEachRecordDataset, GanttForEachRecordDataset, GanttOneGroupDataset, GanttTwoGroupsDataset, OneGroupDataset, StockForAllRecordsDataset, StockForEachRecordDataset, StockOneGroupDataset, TwoGroupsDataset, XYForAllRecordsDataset, XYForEachRecordDataset, XYOneGroupDataset

public interface BaseDataset extends Serializable
An interface that implemented by all datasets. A Data Set provides methods to get the data field(s) used by the chart.
Seit:
8.0
  • Feldübersicht

    Felder
    Modifikator und Typ
    Feld
    Beschreibung
    static final String
    XML token for a dataset element.
  • Methodenübersicht

    Modifikator und Typ
    Methode
    Beschreibung
    Returns the parent chart of this dataset.
    Returns the summary field with the specified name or null if the summary field with this name not found in the list.
    Returns the data fields of this dataset as list.
    com.inet.report.chart.dataset.LabelProvider
    Returns the LabelProvider responsible for providing the title, footnote, and axis labels
    FOR INTERNAL USE ONLY
    void
    FOR INTERNAL USE ONLY.
    Verifies the group and sum properties of current dataset.
  • Felddetails

  • Methodendetails

    • getLabelProvider

      com.inet.report.chart.dataset.LabelProvider getLabelProvider()
      Returns the LabelProvider responsible for providing the title, footnote, and axis labels
      Gibt zurück:
      the LabelProvider responsible for providing the title, footnote, and axis labels
      Seit:
      8.0
    • getDataField

      SummaryField getDataField(String name)
      Returns the summary field with the specified name or null if the summary field with this name not found in the list. Testing for equality using the case sensitive equals method.
      Parameter:
      name - the searched name of summary field (null not permitted)
      Gibt zurück:
      the summary field with the specified name or null.
      Löst aus:
      IllegalArgumentException - if name is null.
      Seit:
      8.0
      Siehe auch:
    • getDataFields

      List getDataFields()
      Returns the data fields of this dataset as list.
      Gibt zurück:
      the list of data fields
      Seit:
      8.0
      Siehe auch:
    • getChart

      Chart2 getChart()
      Returns the parent chart of this dataset.
      Gibt zurück:
      the chart.
      Seit:
      8.0
    • verify

      String verify(ChartStyle style)
      Verifies the group and sum properties of current dataset.
      Parameter:
      style - the chart style
      Gibt zurück:
      the error message or empty string if all properties are correct.
      Seit:
      8.0
    • getReferencedObject

      List getReferencedObject()
      FOR INTERNAL USE ONLY
      Gibt zurück:
      FOR INTERNAL USE ONLY
    • updateReferences

      void updateReferences()
      FOR INTERNAL USE ONLY.