igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
55 lines (54 loc) • 2.05 kB
JavaScript
/*
THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
https://www.infragistics.com/legal/license/igultimate-la
https://www.infragistics.com/legal/license/igultimate-eula
GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOADING AND/OR INSTALLING AND USING INFRAGISTICS SOFTWARE: you are indicating that you have read and understand this Agreement, and agree to be legally bound by it on behalf of the yourself and your company.
*/
import { __extends } from "tslib";
import { Base, markType } from "./type";
/**
* @hidden
*/
var ToolContextBindingInfo = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(ToolContextBindingInfo, _super);
function ToolContextBindingInfo() {
var _this = _super !== null && _super.apply(this, arguments) || this;
_this._contextKey = null;
_this._propertyName = null;
_this._bindingMode = 0;
return _this;
}
Object.defineProperty(ToolContextBindingInfo.prototype, "contextKey", {
get: function () {
return this._contextKey;
},
set: function (a) {
this._contextKey = a;
},
enumerable: false,
configurable: true
});
Object.defineProperty(ToolContextBindingInfo.prototype, "propertyName", {
get: function () {
return this._propertyName;
},
set: function (a) {
this._propertyName = a;
},
enumerable: false,
configurable: true
});
Object.defineProperty(ToolContextBindingInfo.prototype, "bindingMode", {
get: function () {
return this._bindingMode;
},
set: function (a) {
this._bindingMode = a;
},
enumerable: false,
configurable: true
});
ToolContextBindingInfo.$t = markType(ToolContextBindingInfo, 'ToolContextBindingInfo');
return ToolContextBindingInfo;
}(Base));
export { ToolContextBindingInfo };