igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
131 lines (130 loc) • 3.74 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 { Description } from "./Description";
import { markType } from "./type";
/**
* @hidden
*/
export let FinancialCalculationDataSourceDescription = /*@__PURE__*/ (() => {
class FinancialCalculationDataSourceDescription extends Description {
constructor() {
super();
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;
}
get_type() {
return "FinancialCalculationDataSource";
}
get type() {
return this.get_type();
}
get typicalColumn() {
return this.m;
}
set typicalColumn(a) {
this.m = a;
this.j("TypicalColumn");
}
get trueRange() {
return this.l;
}
set trueRange(a) {
this.l = a;
this.j("TrueRange");
}
get trueLow() {
return this.k;
}
set trueLow(a) {
this.k = a;
this.j("TrueLow");
}
get period() {
return this.ac;
}
set period(a) {
this.ac = a;
this.j("Period");
}
get shortPeriod() {
return this.ad;
}
set shortPeriod(a) {
this.ad = a;
this.j("ShortPeriod");
}
get longPeriod() {
return this.ab;
}
set longPeriod(a) {
this.ab = a;
this.j("LongPeriod");
}
get count() {
return this.aa;
}
set count(a) {
this.aa = a;
this.j("Count");
}
get calculateFrom() {
return this.z;
}
set calculateFrom(a) {
this.z = a;
this.j("CalculateFrom");
}
get calculateCount() {
return this.y;
}
set calculateCount(a) {
this.y = a;
this.j("CalculateCount");
}
get multiplier() {
return this.u;
}
set multiplier(a) {
this.u = a;
this.j("Multiplier");
}
get minimumValue() {
return this.t;
}
set minimumValue(a) {
this.t = a;
this.j("MinimumValue");
}
get maximumValue() {
return this.s;
}
set maximumValue(a) {
this.s = a;
this.j("MaximumValue");
}
get specifiesRange() {
return this.q;
}
set specifiesRange(a) {
this.q = a;
this.j("SpecifiesRange");
}
}
FinancialCalculationDataSourceDescription.$t = markType(FinancialCalculationDataSourceDescription, 'FinancialCalculationDataSourceDescription', Description.$);
return FinancialCalculationDataSourceDescription;
})();