igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
80 lines (79 loc) • 2.63 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 { BaseDataSourceDescription } from "./BaseDataSourceDescription";
import { markType } from "./type";
/**
* @hidden
*/
export let VirtualDataSourceDescription = /*@__PURE__*/ (() => {
class VirtualDataSourceDescription extends BaseDataSourceDescription {
constructor() {
super();
this.ax = false;
this.ay = false;
this.a4 = 0;
this.a3 = 0;
this.a2 = 0;
this.a8 = null;
this.aw = false;
}
get_type() {
return "VirtualDataSource";
}
get isSectionCollapsable() {
return this.ax;
}
set isSectionCollapsable(a) {
this.ax = a;
this.e("IsSectionCollapsable");
}
get isSectionExpandedDefault() {
return this.ay;
}
set isSectionExpandedDefault(a) {
this.ay = a;
this.e("IsSectionExpandedDefault");
}
get pageSizeRequested() {
return this.a4;
}
set pageSizeRequested(a) {
this.a4 = a;
this.e("PageSizeRequested");
}
get maxCachedPages() {
return this.a3;
}
set maxCachedPages(a) {
this.a3 = a;
this.e("MaxCachedPages");
}
get actualPageSize() {
return this.a2;
}
set actualPageSize(a) {
this.a2 = a;
this.e("ActualPageSize");
}
get concurrencyTag() {
return this.a8;
}
set concurrencyTag(a) {
this.a8 = a;
this.e("ConcurrencyTag");
}
get isBatchingEnabled() {
return this.aw;
}
set isBatchingEnabled(a) {
this.aw = a;
this.e("IsBatchingEnabled");
}
}
VirtualDataSourceDescription.$t = markType(VirtualDataSourceDescription, 'VirtualDataSourceDescription', BaseDataSourceDescription.$);
return VirtualDataSourceDescription;
})();