igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
89 lines (88 loc) • 3.08 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, markType } from "./type";
import { ISummaryResult_$type } from "./ISummaryResult";
/**
* @hidden
*/
var GenericSummaryResult = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(GenericSummaryResult, _super);
function GenericSummaryResult() {
var _this = _super !== null && _super.apply(this, arguments) || this;
_this._groupKey = null;
_this._propertyName = null;
_this._operand = 0;
_this._value = null;
_this._summaryIndex = 0;
_this._shouldDisplay = false;
return _this;
}
Object.defineProperty(GenericSummaryResult.prototype, "groupKey", {
get: function () {
return this._groupKey;
},
set: function (a) {
this._groupKey = a;
},
enumerable: false,
configurable: true
});
Object.defineProperty(GenericSummaryResult.prototype, "propertyName", {
get: function () {
return this._propertyName;
},
set: function (a) {
this._propertyName = a;
},
enumerable: false,
configurable: true
});
Object.defineProperty(GenericSummaryResult.prototype, "operand", {
get: function () {
return this._operand;
},
set: function (a) {
this._operand = a;
},
enumerable: false,
configurable: true
});
Object.defineProperty(GenericSummaryResult.prototype, "value", {
get: function () {
return this._value;
},
set: function (a) {
this._value = a;
},
enumerable: false,
configurable: true
});
Object.defineProperty(GenericSummaryResult.prototype, "summaryIndex", {
get: function () {
return this._summaryIndex;
},
set: function (a) {
this._summaryIndex = a;
},
enumerable: false,
configurable: true
});
Object.defineProperty(GenericSummaryResult.prototype, "shouldDisplay", {
get: function () {
return this._shouldDisplay;
},
set: function (a) {
this._shouldDisplay = a;
},
enumerable: false,
configurable: true
});
GenericSummaryResult.$t = markType(GenericSummaryResult, 'GenericSummaryResult', Base.$, [ISummaryResult_$type]);
return GenericSummaryResult;
}(Base));
export { GenericSummaryResult };