QueryModifierAPI.js 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. "use strict";
  2. function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
  3. /**
  4. * Licensed Materials - Property of IBM
  5. * IBM Business Analytics (C) Copyright IBM Corp. 2019
  6. * US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
  7. */
  8. /**
  9. * @class QueryModifierAPI
  10. * @hideconstructor
  11. * @classdesc
  12. */
  13. define([], function () {
  14. var QueryModifierAPI = function () {
  15. function QueryModifierAPI() {
  16. _classCallCheck(this, QueryModifierAPI);
  17. }
  18. /**
  19. * @function QueryModifierAPI#modifyQuerySpecList
  20. * @description modify the given query spec list
  21. * @public
  22. * @param querySpecList query spec list returned from queryProvider
  23. * @return {Object[]} modified query spec list
  24. */
  25. QueryModifierAPI.prototype.modifyQuerySpecList = function modifyQuerySpecList() {};
  26. /**
  27. * @return {String} the type of the modifier
  28. */
  29. QueryModifierAPI.prototype.getType = function getType() {};
  30. return QueryModifierAPI;
  31. }();
  32. return QueryModifierAPI;
  33. });
  34. //# sourceMappingURL=QueryModifierAPI.js.map