UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

129 lines (128 loc) 4.24 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 { Description } from "./Description"; import { markType } from "./type"; /** * @hidden */ var ShapeDataSourceDescription = /** @class */ /*@__PURE__*/ (function (_super) { __extends(ShapeDataSourceDescription, _super); function ShapeDataSourceDescription() { var _this = _super.call(this) || this; _this.l = null; _this.k = null; _this.o = false; _this.u = null; _this.q = null; _this.t = null; _this.s = null; _this.r = null; return _this; } ShapeDataSourceDescription.prototype.get_type = function () { return "ShapeDataSource"; }; Object.defineProperty(ShapeDataSourceDescription.prototype, "type", { get: function () { return this.get_type(); }, enumerable: false, configurable: true }); Object.defineProperty(ShapeDataSourceDescription.prototype, "worldRect", { get: function () { return this.l; }, set: function (a) { this.l = a; this.j("WorldRect"); }, enumerable: false, configurable: true }); Object.defineProperty(ShapeDataSourceDescription.prototype, "computedWorldRect", { get: function () { return this.k; }, set: function (a) { this.k = a; this.j("ComputedWorldRect"); }, enumerable: false, configurable: true }); Object.defineProperty(ShapeDataSourceDescription.prototype, "deferImportCompleted", { get: function () { return this.o; }, set: function (a) { this.o = a; this.j("DeferImportCompleted"); }, enumerable: false, configurable: true }); Object.defineProperty(ShapeDataSourceDescription.prototype, "shapefileSource", { get: function () { return this.u; }, set: function (a) { this.u = a; this.j("ShapefileSource"); }, enumerable: false, configurable: true }); Object.defineProperty(ShapeDataSourceDescription.prototype, "databaseSource", { get: function () { return this.q; }, set: function (a) { this.q = a; this.j("DatabaseSource"); }, enumerable: false, configurable: true }); Object.defineProperty(ShapeDataSourceDescription.prototype, "importPendingRef", { get: function () { return this.t; }, set: function (a) { this.t = a; this.j("ImportPendingRef"); }, enumerable: false, configurable: true }); Object.defineProperty(ShapeDataSourceDescription.prototype, "importCompletedRef", { get: function () { return this.s; }, set: function (a) { this.s = a; this.j("ImportCompletedRef"); }, enumerable: false, configurable: true }); Object.defineProperty(ShapeDataSourceDescription.prototype, "filterRef", { get: function () { return this.r; }, set: function (a) { this.r = a; this.j("FilterRef"); }, enumerable: false, configurable: true }); ShapeDataSourceDescription.$t = markType(ShapeDataSourceDescription, 'ShapeDataSourceDescription', Description.$); return ShapeDataSourceDescription; }(Description)); export { ShapeDataSourceDescription };