igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
129 lines (128 loc) • 4.13 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 WebGroupByRecordDescription = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(WebGroupByRecordDescription, _super);
function WebGroupByRecordDescription() {
var _this = _super.call(this) || this;
_this.q = null;
_this.t = 0;
_this.y = null;
_this.w = null;
_this.o = null;
_this.k = null;
_this.s = 0;
_this.m = null;
return _this;
}
WebGroupByRecordDescription.prototype.get_type = function () {
return "WebGroupByRecord";
};
Object.defineProperty(WebGroupByRecordDescription.prototype, "type", {
get: function () {
return this.get_type();
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebGroupByRecordDescription.prototype, "expression", {
get: function () {
return this.q;
},
set: function (a) {
this.q = a;
this.j("Expression");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebGroupByRecordDescription.prototype, "level", {
get: function () {
return this.t;
},
set: function (a) {
this.t = a;
this.j("Level");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebGroupByRecordDescription.prototype, "recordsRef", {
get: function () {
return this.y;
},
set: function (a) {
this.y = a;
this.j("RecordsRef");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebGroupByRecordDescription.prototype, "value", {
get: function () {
return this.w;
},
set: function (a) {
this.w = a;
this.j("Value");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebGroupByRecordDescription.prototype, "groupParent", {
get: function () {
return this.o;
},
set: function (a) {
this.o = a;
this.j("GroupParent");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebGroupByRecordDescription.prototype, "groups", {
get: function () {
return this.k;
},
set: function (a) {
this.k = a;
this.j("Groups");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebGroupByRecordDescription.prototype, "height", {
get: function () {
return this.s;
},
set: function (a) {
this.s = a;
this.j("Height");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebGroupByRecordDescription.prototype, "column", {
get: function () {
return this.m;
},
set: function (a) {
this.m = a;
this.j("Column");
},
enumerable: false,
configurable: true
});
WebGroupByRecordDescription.$t = markType(WebGroupByRecordDescription, 'WebGroupByRecordDescription', Description.$);
return WebGroupByRecordDescription;
}(Description));
export { WebGroupByRecordDescription };