UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

63 lines (62 loc) 2.08 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 { Base, markType } from "./type"; import { ISummaryResult_$type } from "./ISummaryResult"; /** * @hidden */ export let GenericSummaryResult = /*@__PURE__*/ (() => { class GenericSummaryResult extends Base { constructor() { super(...arguments); this._groupKey = null; this._propertyName = null; this._operand = 0; this._value = null; this._summaryIndex = 0; this._shouldDisplay = false; } get groupKey() { return this._groupKey; } set groupKey(a) { this._groupKey = a; } get propertyName() { return this._propertyName; } set propertyName(a) { this._propertyName = a; } get operand() { return this._operand; } set operand(a) { this._operand = a; } get value() { return this._value; } set value(a) { this._value = a; } get summaryIndex() { return this._summaryIndex; } set summaryIndex(a) { this._summaryIndex = a; } get shouldDisplay() { return this._shouldDisplay; } set shouldDisplay(a) { this._shouldDisplay = a; } } GenericSummaryResult.$t = markType(GenericSummaryResult, 'GenericSummaryResult', Base.$, [ISummaryResult_$type]); return GenericSummaryResult; })();