UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

91 lines (90 loc) 2.77 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 { Description } from "./Description"; import { markType } from "./type"; /** * @hidden */ export let ShapeDataSourceDescription = /*@__PURE__*/ (() => { class ShapeDataSourceDescription extends Description { constructor() { super(); this.l = null; this.k = null; this.o = false; this.u = null; this.q = null; this.t = null; this.s = null; this.r = null; } get_type() { return "ShapeDataSource"; } get type() { return this.get_type(); } get worldRect() { return this.l; } set worldRect(a) { this.l = a; this.j("WorldRect"); } get computedWorldRect() { return this.k; } set computedWorldRect(a) { this.k = a; this.j("ComputedWorldRect"); } get deferImportCompleted() { return this.o; } set deferImportCompleted(a) { this.o = a; this.j("DeferImportCompleted"); } get shapefileSource() { return this.u; } set shapefileSource(a) { this.u = a; this.j("ShapefileSource"); } get databaseSource() { return this.q; } set databaseSource(a) { this.q = a; this.j("DatabaseSource"); } get importPendingRef() { return this.t; } set importPendingRef(a) { this.t = a; this.j("ImportPendingRef"); } get importCompletedRef() { return this.s; } set importCompletedRef(a) { this.s = a; this.j("ImportCompletedRef"); } get filterRef() { return this.r; } set filterRef(a) { this.r = a; this.j("FilterRef"); } } ShapeDataSourceDescription.$t = markType(ShapeDataSourceDescription, 'ShapeDataSourceDescription', Description.$); return ShapeDataSourceDescription; })();