UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

131 lines (130 loc) 4.39 kB
/* 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 DataSourceSpecialRowDescription = /** @class */ /*@__PURE__*/ (function (_super) { __extends(DataSourceSpecialRowDescription, _super); function DataSourceSpecialRowDescription() { var _this = _super.call(this) || this; _this.w = null; _this.k = null; _this.y = null; _this.l = null; _this.x = null; _this.t = null; _this.r = 0; _this.m = null; return _this; } DataSourceSpecialRowDescription.prototype.get_type = function () { return "DataSourceSpecialRow"; }; Object.defineProperty(DataSourceSpecialRowDescription.prototype, "type", { get: function () { return this.get_type(); }, enumerable: false, configurable: true }); Object.defineProperty(DataSourceSpecialRowDescription.prototype, "rowType", { get: function () { return this.w; }, set: function (a) { this.w = a; this.j("RowType"); }, enumerable: false, configurable: true }); Object.defineProperty(DataSourceSpecialRowDescription.prototype, "keys", { get: function () { return this.k; }, set: function (a) { this.k = a; this.j("Keys"); }, enumerable: false, configurable: true }); Object.defineProperty(DataSourceSpecialRowDescription.prototype, "valuesRef", { get: function () { return this.y; }, set: function (a) { this.y = a; this.j("ValuesRef"); }, enumerable: false, configurable: true }); Object.defineProperty(DataSourceSpecialRowDescription.prototype, "sectionKeys", { get: function () { return this.l; }, set: function (a) { this.l = a; this.j("SectionKeys"); }, enumerable: false, configurable: true }); Object.defineProperty(DataSourceSpecialRowDescription.prototype, "sectionValuesRef", { get: function () { return this.x; }, set: function (a) { this.x = a; this.j("SectionValuesRef"); }, enumerable: false, configurable: true }); Object.defineProperty(DataSourceSpecialRowDescription.prototype, "targetRow", { get: function () { return this.t; }, set: function (a) { this.t = a; this.j("TargetRow"); }, enumerable: false, configurable: true }); Object.defineProperty(DataSourceSpecialRowDescription.prototype, "level", { get: function () { return this.r; }, set: function (a) { this.r = a; this.j("Level"); }, enumerable: false, configurable: true }); Object.defineProperty(DataSourceSpecialRowDescription.prototype, "summaryResults", { get: function () { return this.m; }, set: function (a) { this.m = a; this.j("SummaryResults"); }, enumerable: false, configurable: true }); DataSourceSpecialRowDescription.$t = markType(DataSourceSpecialRowDescription, 'DataSourceSpecialRowDescription', Description.$); DataSourceSpecialRowDescription.__marshalByValue = true; DataSourceSpecialRowDescription.__marshalByValueAlias = "DataSourceSpecialRow"; return DataSourceSpecialRowDescription; }(Description)); export { DataSourceSpecialRowDescription };