igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
119 lines (118 loc) • 3.97 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 { Description } from "./Description";
import { markType } from "./type";
/**
* @hidden
*/
var WebTreeGridRecordDescription = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(WebTreeGridRecordDescription, _super);
function WebTreeGridRecordDescription() {
var _this = _super.call(this) || this;
_this.t = null;
_this.s = null;
_this.h = null;
_this.j = null;
_this.q = 0;
_this.n = false;
_this.m = false;
return _this;
}
WebTreeGridRecordDescription.prototype.get_type = function () {
return "WebTreeGridRecord";
};
Object.defineProperty(WebTreeGridRecordDescription.prototype, "type", {
get: function () {
return this.get_type();
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebTreeGridRecordDescription.prototype, "key", {
get: function () {
return this.t;
},
set: function (a) {
this.t = a;
this.g("Key");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebTreeGridRecordDescription.prototype, "data", {
get: function () {
return this.s;
},
set: function (a) {
this.s = a;
this.g("Data");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebTreeGridRecordDescription.prototype, "children", {
get: function () {
return this.h;
},
set: function (a) {
this.h = a;
this.g("Children");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebTreeGridRecordDescription.prototype, "recordParent", {
get: function () {
return this.j;
},
set: function (a) {
this.j = a;
this.g("RecordParent");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebTreeGridRecordDescription.prototype, "level", {
get: function () {
return this.q;
},
set: function (a) {
this.q = a;
this.g("Level");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebTreeGridRecordDescription.prototype, "isFilteredOutParent", {
get: function () {
return this.n;
},
set: function (a) {
this.n = a;
this.g("IsFilteredOutParent");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebTreeGridRecordDescription.prototype, "expanded", {
get: function () {
return this.m;
},
set: function (a) {
this.m = a;
this.g("Expanded");
},
enumerable: false,
configurable: true
});
WebTreeGridRecordDescription.$t = markType(WebTreeGridRecordDescription, 'WebTreeGridRecordDescription', Description.$);
WebTreeGridRecordDescription.__marshalByValue = true;
WebTreeGridRecordDescription.__marshalByValueAlias = "TreeGridRecord";
return WebTreeGridRecordDescription;
}(Description));
export { WebTreeGridRecordDescription };