public abstract class OntologyModel
extends java.lang.Object
| Constructor and Description |
|---|
OntologyModel() |
| Modifier and Type | Method and Description |
|---|---|
abstract void |
addSeries(DataSeries series)
Adds a data series.
|
abstract void |
exchangeSeries(int seriesIndex,
DataSeries dataSeries)
Exchange data series.
|
abstract jade.util.leap.List |
getChartData()
Gets the chart data.
|
abstract ChartSettingsGeneral |
getChartSettings()
Gets the chart settings for this chart.
|
abstract DataSeries |
getSeries(int seriesIndex)
Gets the data series.
|
abstract int |
getSeriesCount()
Gets the number of current data series.
|
abstract jade.util.leap.List |
getSeriesData(int seriesIndex)
Gets the list of value pairs for the data series with the specified index.
|
abstract void |
removeSeries(int seriesIndex)
Removes a data series.
|
public abstract int getSeriesCount()
public abstract jade.util.leap.List getSeriesData(int seriesIndex)
throws NoSuchSeriesException
seriesIndex - The series indexNoSuchSeriesException - Thrown if there is no series with the specified indexpublic abstract void addSeries(DataSeries series)
series - the seriespublic abstract DataSeries getSeries(int seriesIndex) throws NoSuchSeriesException
seriesIndex - the series indexNoSuchSeriesException - the no such series exceptionpublic abstract void exchangeSeries(int seriesIndex,
DataSeries dataSeries)
throws NoSuchSeriesException
seriesIndex - the series indexdataSeries - the data seriesNoSuchSeriesException - the no such series exceptionpublic abstract void removeSeries(int seriesIndex)
throws NoSuchSeriesException
seriesIndex - the series indexNoSuchSeriesException - the no such series exceptionpublic abstract jade.util.leap.List getChartData()
public abstract ChartSettingsGeneral getChartSettings()