UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

80 lines (79 loc) 2.63 kB
/* 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.a5 = false; this.a6 = false; this.bc = 0; this.bb = 0; this.ba = 0; this.bg = null; this.a4 = false; } get_type() { return "VirtualDataSource"; } get isSectionCollapsable() { return this.a5; } set isSectionCollapsable(a) { this.a5 = a; this.g("IsSectionCollapsable"); } get isSectionExpandedDefault() { return this.a6; } set isSectionExpandedDefault(a) { this.a6 = a; this.g("IsSectionExpandedDefault"); } get pageSizeRequested() { return this.bc; } set pageSizeRequested(a) { this.bc = a; this.g("PageSizeRequested"); } get maxCachedPages() { return this.bb; } set maxCachedPages(a) { this.bb = a; this.g("MaxCachedPages"); } get actualPageSize() { return this.ba; } set actualPageSize(a) { this.ba = a; this.g("ActualPageSize"); } get concurrencyTag() { return this.bg; } set concurrencyTag(a) { this.bg = a; this.g("ConcurrencyTag"); } get isBatchingEnabled() { return this.a4; } set isBatchingEnabled(a) { this.a4 = a; this.g("IsBatchingEnabled"); } } VirtualDataSourceDescription.$t = markType(VirtualDataSourceDescription, 'VirtualDataSourceDescription', BaseDataSourceDescription.$); return VirtualDataSourceDescription; })();