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 ToolbarSectionAPI
- * @hideconstructor
- * @classdesc API class that is used to manage the Canvas Toolbar Dock.
- */
- define([], function () {
- var ToolbarSectionAPI = function () {
- function ToolbarSectionAPI() {
- _classCallCheck(this, ToolbarSectionAPI);
- }
- /**
- * @function ToolbarSectionAPI#getReactElement
- * @description provide a React element represents this feature
- * @return {ReactElement} a React Element
- */
- ToolbarSectionAPI.prototype.getReactElement = function getReactElement() {};
- /**
- * @function ToolbarSectionAPI#setNode
- * @description let the UI implementation set the node which represent this feature
- * @param {Node} a DOM node
- */
- ToolbarSectionAPI.prototype.setNode = function setNode() {};
- /**
- * @function ToolbarSectionAPI#getNode
- * @description provide the DOM node of this feature
- * @returns {Node} a DOM node
- */
- ToolbarSectionAPI.prototype.getNode = function getNode() {};
- /**
- * @function ToolbarSectionAPI#getIndex
- * @description provide the index of this feature
- * @return {Integer} int
- */
- ToolbarSectionAPI.prototype.getIndex = function getIndex() {};
- return ToolbarSectionAPI;
- }();
- return ToolbarSectionAPI;
- });
- //# sourceMappingURL=ToolbarSectionDOMAPI.js.map
|