PropertiesProviderAPI.js 1.3 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, 2020
  6. * US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
  7. */
  8. /**
  9. * @interface PropertiesProviderAPI
  10. * @hideconstructor
  11. * @classdesc API class that is used to implement a properties provider for contributing a list of properties and property layouts.
  12. */
  13. define([], function () {
  14. var PropertiesProviderAPI = function () {
  15. function PropertiesProviderAPI() {
  16. _classCallCheck(this, PropertiesProviderAPI);
  17. }
  18. /**
  19. * @function PropertiesProviderAPI#getPropertyLayoutList
  20. * @description Gets the list of properties layout.
  21. * @return {Object[]}
  22. */
  23. PropertiesProviderAPI.prototype.getPropertyLayoutList = function getPropertyLayoutList() {};
  24. /**
  25. * @function PropertiesProviderAPI#getPropertyList
  26. * @description Gets the list of properties.
  27. * @return {Object[]}
  28. */
  29. PropertiesProviderAPI.prototype.getPropertyList = function getPropertyList() {};
  30. return PropertiesProviderAPI;
  31. }();
  32. return PropertiesProviderAPI;
  33. });
  34. //# sourceMappingURL=PropertiesProviderAPI.js.map