igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
56 lines (55 loc) • 2.02 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 { Base, String_$type, markType } from "./type";
import { ISectionInformation_$type } from "./ISectionInformation";
import { List$1 } from "./List$1";
import { ISummaryResult_$type } from "./ISummaryResult";
/**
* @hidden
*/
export let GenericSectionInformation = /*@__PURE__*/ (() => {
class GenericSectionInformation extends Base {
constructor() {
super(...arguments);
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);
}
get startIndex() {
return this._startIndex;
}
set startIndex(a) {
this._startIndex = a;
}
get endIndex() {
return this._endIndex;
}
set endIndex(a) {
this._endIndex = a;
}
get groupKeyProperties() {
return this.a.toArray();
}
get groupKeyValues() {
return this.b.toArray();
}
get summaryResults() {
return this.c.toArray();
}
d(a, b) {
this.a.add(a);
this.b.add1(b);
}
e(a) {
this.c.add(a);
}
}
GenericSectionInformation.$t = markType(GenericSectionInformation, 'GenericSectionInformation', Base.$, [ISectionInformation_$type]);
return GenericSectionInformation;
})();