| org.jfree.data.general.CombinationDataset
All known Subclasses: org.jfree.data.general.SubSeriesDataset, org.jfree.data.general.CombinedDataset,
CombinationDataset | public interface CombinationDataset (Code) | | Interface that describes the new methods that any combined dataset needs to
implement. A combined dataset object will combine one or more datasets and
expose a sub-set or union of the combined datasets.
|
Method Summary | |
public int[] | getMap() Returns a map or indirect indexing form our series into parent's series. | public SeriesDataset | getParent() Returns the parent Dataset of this combination. |
getMap | public int[] getMap()(Code) | | Returns a map or indirect indexing form our series into parent's series.
A map or indirect indexing form our series into parent's series. |
getParent | public SeriesDataset getParent()(Code) | | Returns the parent Dataset of this combination. If there is more than
one parent, or a child is found that is not a combination, then returns
null .
The parent Dataset of this combination. |
|
|