igniteui-react-core
Version:
Ignite UI React Core.
41 lines (40 loc) • 1.44 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 { Base, markType } from "./type";
/**
* @hidden
*/
export let ToolContextBindingInfo = /*@__PURE__*/ (() => {
class ToolContextBindingInfo extends Base {
constructor() {
super(...arguments);
this._contextKey = null;
this._propertyName = null;
this._bindingMode = 0;
}
get contextKey() {
return this._contextKey;
}
set contextKey(a) {
this._contextKey = a;
}
get propertyName() {
return this._propertyName;
}
set propertyName(a) {
this._propertyName = a;
}
get bindingMode() {
return this._bindingMode;
}
set bindingMode(a) {
this._bindingMode = a;
}
}
ToolContextBindingInfo.$t = /*@__PURE__*/ markType(ToolContextBindingInfo, 'ToolContextBindingInfo');
return ToolContextBindingInfo;
})();