UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

74 lines (73 loc) 2.71 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 { __extends } from "tslib"; import { BaseDataSourceDescription } from "./BaseDataSourceDescription"; import { markType } from "./type"; /** * @hidden */ var VirtualDataSourceDescription = /** @class */ /*@__PURE__*/ (function (_super) { __extends(VirtualDataSourceDescription, _super); function VirtualDataSourceDescription() { var _this = _super.call(this) || this; _this.a9 = 0; _this.a8 = 0; _this.a7 = 0; _this.bd = null; return _this; } VirtualDataSourceDescription.prototype.get_type = function () { return "VirtualDataSource"; }; Object.defineProperty(VirtualDataSourceDescription.prototype, "pageSizeRequested", { get: function () { return this.a9; }, set: function (a) { this.a9 = a; this.j("PageSizeRequested"); }, enumerable: false, configurable: true }); Object.defineProperty(VirtualDataSourceDescription.prototype, "maxCachedPages", { get: function () { return this.a8; }, set: function (a) { this.a8 = a; this.j("MaxCachedPages"); }, enumerable: false, configurable: true }); Object.defineProperty(VirtualDataSourceDescription.prototype, "actualPageSize", { get: function () { return this.a7; }, set: function (a) { this.a7 = a; this.j("ActualPageSize"); }, enumerable: false, configurable: true }); Object.defineProperty(VirtualDataSourceDescription.prototype, "concurrencyTag", { get: function () { return this.bd; }, set: function (a) { this.bd = a; this.j("ConcurrencyTag"); }, enumerable: false, configurable: true }); VirtualDataSourceDescription.$t = markType(VirtualDataSourceDescription, 'VirtualDataSourceDescription', BaseDataSourceDescription.$); return VirtualDataSourceDescription; }(BaseDataSourceDescription)); export { VirtualDataSourceDescription };