'use strict'; function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } function _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return call && (typeof call === "object" || typeof call === "function") ? call : self; } function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; } /** * Licensed Materials - Property of IBM * IBM Business Analytics (C) Copyright IBM Corp. 2019 * US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp. */ /** * @class QueryDataItemAPI * @hideconstructor * @classdesc API class used to access data items of the query */ define(['../../../../api/DataItemAPI'], function (DataItemAPI) { var QueryDataItemAPI = function (_DataItemAPI) { _inherits(QueryDataItemAPI, _DataItemAPI); function QueryDataItemAPI() { _classCallCheck(this, QueryDataItemAPI); return _possibleConstructorReturn(this, _DataItemAPI.apply(this, arguments)); } /** * @function QueryDataItemAPI#getProjected * @description Determine whether the data item is projected in the query * @public * @return {Boolean} true if the data item is projected in the query, otherwise false */ QueryDataItemAPI.prototype.getProjected = function getProjected() {}; /** * @function QueryDataItemAPI#getProjected * @description Determine whether the data item is projected in the query * @public * @param {Boolean} true if the data item is projected in the query, otherwise false */ QueryDataItemAPI.prototype.setProjected = function setProjected() {}; /** * @function QueryDataItemAPI#getCommandList * @description Get the list of query data item commands * @public * @return {QueryDataItemCommand[]} array of query data item commands */ QueryDataItemAPI.prototype.getCommandList = function getCommandList() {}; /** * @function QueryDataItemAPI#addCommand * @description Add a query command to the data item. * @public * @param {QueryDataItemCommand} command The query data item command */ QueryDataItemAPI.prototype.addCommand = function addCommand() {}; /** * @function QueryDataItemAPI#setType * @description set the actual type of the query data item * @public * @return {String} dataItem type */ QueryDataItemAPI.prototype.setType = function setType() {}; return QueryDataItemAPI; }(DataItemAPI); return QueryDataItemAPI; }); //# sourceMappingURL=QueryDataItemAPI.js.map