morpheus.DatasetAdapter = function(dataset, rowMetadata, columnMetadata) { if (dataset == null) { throw 'dataset is null'; } this.dataset = dataset; this.rowMetadata = rowMetadata || dataset.getRowMetadata(); this.columnMetadata = columnMetadata || dataset.getColumnMetadata(); }; morpheus.DatasetAdapter.prototype = { getDataset : function() { return this.dataset; }, getName : function(seriesIndex) { return this.dataset.getName(seriesIndex); }, setName : function(seriesIndex, name) { this.dataset.setName(seriesIndex, name); }, getRowMetadata : function() { return this.rowMetadata; }, getColumnMetadata : function() { return this.columnMetadata; }, getRowCount : function() { return this.dataset.getRowCount(); }, getColumnCount : function() { return this.dataset.getColumnCount(); }, getValue : function(rowIndex, columnIndex, seriesIndex) { return this.dataset.getValue(rowIndex, columnIndex, seriesIndex); }, setValue : function(rowIndex, columnIndex, value, seriesIndex) { this.dataset.setValue(rowIndex, columnIndex, value, seriesIndex); }, addSeries : function(options) { return this.dataset.addSeries(options); }, getSeriesCount : function() { return this.dataset.getSeriesCount(); }, getDataType : function(rowIndex, seriesIndex) { return this.dataset.getDataType(rowIndex, seriesIndex); }, toString : function() { return this.dataset.toString(); } };