12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- "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. 2019
- * US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
- */
- /**
- * @class ToolbarDockAPI
- * @hideconstructor
- * @classdesc API class that is used to manage the DOM of Toolbar Dock.
- */
- define([], function () {
- var ToolbarDockDOMAPI = function () {
- function ToolbarDockDOMAPI() {
- _classCallCheck(this, ToolbarDockDOMAPI);
- }
- /**
- * @function ToolbarDockDOMAPI#render
- * @description render the UI on DOM
- */
- ToolbarDockDOMAPI.prototype.render = function render() {};
- /**
- * @function ToolbarDockDOMAPI#addProvider
- * @description an interface which allows others to contribute to the ToolbarDockDOM
- * @param {String} providerID the id of a provider
- * @param {Object} provider the provider which will contribute a part of UI of the ToolbarDockDOM
- */
- ToolbarDockDOMAPI.prototype.addProvider = function addProvider() /**providerID, provider */{};
- /**
- * @function ToolbarDockDOMAPI#removeProvider
- * @description remove a provider from this feature
- * @param {String} providerID the id of a provider which will be removed
- */
- ToolbarDockDOMAPI.prototype.removeProvider = function removeProvider() {};
- /**
- * @function ToolbarDockDOMAPI#getProviders
- * @description get all providers of this feature
- * @return {Object} an object whose keys are provider IDs and values are providers
- */
- ToolbarDockDOMAPI.prototype.getProviders = function getProviders() {};
- return ToolbarDockDOMAPI;
- }();
- return ToolbarDockDOMAPI;
- });
- //# sourceMappingURL=ToolbarDockDOMAPI.js.map
|