igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
78 lines (77 loc) • 2.98 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 { Base, String_$type, markType } from "./type";
import { ISectionInformation_$type } from "./ISectionInformation";
import { List$1 } from "./List$1";
import { ISummaryResult_$type } from "./ISummaryResult";
/**
* @hidden
*/
var GenericSectionInformation = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(GenericSectionInformation, _super);
function GenericSectionInformation() {
var _this = _super !== null && _super.apply(this, arguments) || this;
_this._startIndex = 0;
_this._endIndex = 0;
_this.a = new List$1(String_$type, 0);
_this.b = new List$1(Base.$, 0);
_this.c = new List$1(ISummaryResult_$type, 0);
return _this;
}
Object.defineProperty(GenericSectionInformation.prototype, "startIndex", {
get: function () {
return this._startIndex;
},
set: function (a) {
this._startIndex = a;
},
enumerable: false,
configurable: true
});
Object.defineProperty(GenericSectionInformation.prototype, "endIndex", {
get: function () {
return this._endIndex;
},
set: function (a) {
this._endIndex = a;
},
enumerable: false,
configurable: true
});
Object.defineProperty(GenericSectionInformation.prototype, "groupKeyProperties", {
get: function () {
return this.a.toArray();
},
enumerable: false,
configurable: true
});
Object.defineProperty(GenericSectionInformation.prototype, "groupKeyValues", {
get: function () {
return this.b.toArray();
},
enumerable: false,
configurable: true
});
Object.defineProperty(GenericSectionInformation.prototype, "summaryResults", {
get: function () {
return this.c.toArray();
},
enumerable: false,
configurable: true
});
GenericSectionInformation.prototype.d = function (a, b) {
this.a.add(a);
this.b.add1(b);
};
GenericSectionInformation.prototype.e = function (a) {
this.c.add(a);
};
GenericSectionInformation.$t = markType(GenericSectionInformation, 'GenericSectionInformation', Base.$, [ISectionInformation_$type]);
return GenericSectionInformation;
}(Base));
export { GenericSectionInformation };