igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
189 lines (188 loc) • 6.22 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 { Description } from "./Description";
import { markType } from "./type";
/**
* @hidden
*/
var FinancialCalculationDataSourceDescription = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(FinancialCalculationDataSourceDescription, _super);
function FinancialCalculationDataSourceDescription() {
var _this = _super.call(this) || this;
_this.m = null;
_this.l = null;
_this.k = null;
_this.ac = 0;
_this.ad = 0;
_this.ab = 0;
_this.aa = 0;
_this.z = 0;
_this.y = 0;
_this.u = 0;
_this.t = 0;
_this.s = 0;
_this.q = false;
return _this;
}
FinancialCalculationDataSourceDescription.prototype.get_type = function () {
return "FinancialCalculationDataSource";
};
Object.defineProperty(FinancialCalculationDataSourceDescription.prototype, "type", {
get: function () {
return this.get_type();
},
enumerable: false,
configurable: true
});
Object.defineProperty(FinancialCalculationDataSourceDescription.prototype, "typicalColumn", {
get: function () {
return this.m;
},
set: function (a) {
this.m = a;
this.j("TypicalColumn");
},
enumerable: false,
configurable: true
});
Object.defineProperty(FinancialCalculationDataSourceDescription.prototype, "trueRange", {
get: function () {
return this.l;
},
set: function (a) {
this.l = a;
this.j("TrueRange");
},
enumerable: false,
configurable: true
});
Object.defineProperty(FinancialCalculationDataSourceDescription.prototype, "trueLow", {
get: function () {
return this.k;
},
set: function (a) {
this.k = a;
this.j("TrueLow");
},
enumerable: false,
configurable: true
});
Object.defineProperty(FinancialCalculationDataSourceDescription.prototype, "period", {
get: function () {
return this.ac;
},
set: function (a) {
this.ac = a;
this.j("Period");
},
enumerable: false,
configurable: true
});
Object.defineProperty(FinancialCalculationDataSourceDescription.prototype, "shortPeriod", {
get: function () {
return this.ad;
},
set: function (a) {
this.ad = a;
this.j("ShortPeriod");
},
enumerable: false,
configurable: true
});
Object.defineProperty(FinancialCalculationDataSourceDescription.prototype, "longPeriod", {
get: function () {
return this.ab;
},
set: function (a) {
this.ab = a;
this.j("LongPeriod");
},
enumerable: false,
configurable: true
});
Object.defineProperty(FinancialCalculationDataSourceDescription.prototype, "count", {
get: function () {
return this.aa;
},
set: function (a) {
this.aa = a;
this.j("Count");
},
enumerable: false,
configurable: true
});
Object.defineProperty(FinancialCalculationDataSourceDescription.prototype, "calculateFrom", {
get: function () {
return this.z;
},
set: function (a) {
this.z = a;
this.j("CalculateFrom");
},
enumerable: false,
configurable: true
});
Object.defineProperty(FinancialCalculationDataSourceDescription.prototype, "calculateCount", {
get: function () {
return this.y;
},
set: function (a) {
this.y = a;
this.j("CalculateCount");
},
enumerable: false,
configurable: true
});
Object.defineProperty(FinancialCalculationDataSourceDescription.prototype, "multiplier", {
get: function () {
return this.u;
},
set: function (a) {
this.u = a;
this.j("Multiplier");
},
enumerable: false,
configurable: true
});
Object.defineProperty(FinancialCalculationDataSourceDescription.prototype, "minimumValue", {
get: function () {
return this.t;
},
set: function (a) {
this.t = a;
this.j("MinimumValue");
},
enumerable: false,
configurable: true
});
Object.defineProperty(FinancialCalculationDataSourceDescription.prototype, "maximumValue", {
get: function () {
return this.s;
},
set: function (a) {
this.s = a;
this.j("MaximumValue");
},
enumerable: false,
configurable: true
});
Object.defineProperty(FinancialCalculationDataSourceDescription.prototype, "specifiesRange", {
get: function () {
return this.q;
},
set: function (a) {
this.q = a;
this.j("SpecifiesRange");
},
enumerable: false,
configurable: true
});
FinancialCalculationDataSourceDescription.$t = markType(FinancialCalculationDataSourceDescription, 'FinancialCalculationDataSourceDescription', Description.$);
return FinancialCalculationDataSourceDescription;
}(Description));
export { FinancialCalculationDataSourceDescription };