1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- "use strict";
- function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
- /**
- * Licensed Materials - Property of IBM
- * IBM Business Analytics (C) Copyright IBM Corp. 2020
- * US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
- */
- /**
- * @class QueryModifierAPI
- * @hideconstructor
- * @classdesc
- */
- define([], function () {
- var SummaryQueryModifierAPI = function () {
- function SummaryQueryModifierAPI() {
- _classCallCheck(this, SummaryQueryModifierAPI);
- }
- /**
- * @function SummaryQueryModifierAPI#addDataItemIdList
- * @description add the data item ID list so query can be modified based on this list
- * @public
- * @param {String[]} dataItemIdList Array of data item IDs used to modify the query.
- */
- SummaryQueryModifierAPI.prototype.addDataItemIdList = function addDataItemIdList() {};
- /**
- * @function SummaryQueryModifierAPI#resetDataItemIdList
- * @description reset the Array of data item IDs used to modify the query to empty
- * @public
- */
- SummaryQueryModifierAPI.prototype.resetDataItemIdList = function resetDataItemIdList() {};
- return SummaryQueryModifierAPI;
- }();
- return SummaryQueryModifierAPI;
- });
- //# sourceMappingURL=SummaryQueryModifierAPI.js.map
|