igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
93 lines (92 loc) • 2.82 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 DataSourceSpecialRowDescription = /*@__PURE__*/ (() => {
class DataSourceSpecialRowDescription extends Description {
constructor() {
super();
this.w = null;
this.k = null;
this.y = null;
this.l = null;
this.x = null;
this.t = null;
this.r = 0;
this.m = null;
}
get_type() {
return "DataSourceSpecialRow";
}
get type() {
return this.get_type();
}
get rowType() {
return this.w;
}
set rowType(a) {
this.w = a;
this.j("RowType");
}
get keys() {
return this.k;
}
set keys(a) {
this.k = a;
this.j("Keys");
}
get valuesRef() {
return this.y;
}
set valuesRef(a) {
this.y = a;
this.j("ValuesRef");
}
get sectionKeys() {
return this.l;
}
set sectionKeys(a) {
this.l = a;
this.j("SectionKeys");
}
get sectionValuesRef() {
return this.x;
}
set sectionValuesRef(a) {
this.x = a;
this.j("SectionValuesRef");
}
get targetRow() {
return this.t;
}
set targetRow(a) {
this.t = a;
this.j("TargetRow");
}
get level() {
return this.r;
}
set level(a) {
this.r = a;
this.j("Level");
}
get summaryResults() {
return this.m;
}
set summaryResults(a) {
this.m = a;
this.j("SummaryResults");
}
}
DataSourceSpecialRowDescription.$t = markType(DataSourceSpecialRowDescription, 'DataSourceSpecialRowDescription', Description.$);
DataSourceSpecialRowDescription.__marshalByValue = true;
DataSourceSpecialRowDescription.__marshalByValueAlias = "DataSourceSpecialRow";
return DataSourceSpecialRowDescription;
})();