igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
85 lines (84 loc) • 2.58 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 { Description } from "./Description";
import { markType } from "./type";
/**
* @hidden
*/
export let WebTreeGridRecordDescription = /*@__PURE__*/ (() => {
class WebTreeGridRecordDescription extends Description {
constructor() {
super();
this.r = null;
this.q = null;
this.f = null;
this.h = null;
this.o = 0;
this.l = false;
this.k = false;
}
get_type() {
return "WebTreeGridRecord";
}
get type() {
return this.get_type();
}
get key() {
return this.r;
}
set key(a) {
this.r = a;
this.e("Key");
}
get data() {
return this.q;
}
set data(a) {
this.q = a;
this.e("Data");
}
get children() {
return this.f;
}
set children(a) {
this.f = a;
this.e("Children");
}
get recordParent() {
return this.h;
}
set recordParent(a) {
this.h = a;
this.e("RecordParent");
}
get level() {
return this.o;
}
set level(a) {
this.o = a;
this.e("Level");
}
get isFilteredOutParent() {
return this.l;
}
set isFilteredOutParent(a) {
this.l = a;
this.e("IsFilteredOutParent");
}
get expanded() {
return this.k;
}
set expanded(a) {
this.k = a;
this.e("Expanded");
}
}
WebTreeGridRecordDescription.$t = markType(WebTreeGridRecordDescription, 'WebTreeGridRecordDescription', Description.$);
WebTreeGridRecordDescription.__marshalByValue = true;
WebTreeGridRecordDescription.__marshalByValueAlias = "TreeGridRecord";
return WebTreeGridRecordDescription;
})();