UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

129 lines (128 loc) 4.16 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 HighlightingInfoDescription = /** @class */ /*@__PURE__*/ (function (_super) { __extends(HighlightingInfoDescription, _super); function HighlightingInfoDescription() { var _this = _super.call(this) || this; _this.t = 0; _this.s = 0; _this.x = null; _this.q = 0; _this.m = false; _this.l = false; _this.k = false; _this.w = null; return _this; } HighlightingInfoDescription.prototype.get_type = function () { return "HighlightingInfo"; }; Object.defineProperty(HighlightingInfoDescription.prototype, "type", { get: function () { return this.get_type(); }, enumerable: false, configurable: true }); Object.defineProperty(HighlightingInfoDescription.prototype, "startIndex", { get: function () { return this.t; }, set: function (a) { this.t = a; this.j("StartIndex"); }, enumerable: false, configurable: true }); Object.defineProperty(HighlightingInfoDescription.prototype, "endIndex", { get: function () { return this.s; }, set: function (a) { this.s = a; this.j("EndIndex"); }, enumerable: false, configurable: true }); Object.defineProperty(HighlightingInfoDescription.prototype, "state", { get: function () { return this.x; }, set: function (a) { this.x = a; this.j("State"); }, enumerable: false, configurable: true }); Object.defineProperty(HighlightingInfoDescription.prototype, "progress", { get: function () { return this.q; }, set: function (a) { this.q = a; this.j("Progress"); }, enumerable: false, configurable: true }); Object.defineProperty(HighlightingInfoDescription.prototype, "isMarker", { get: function () { return this.m; }, set: function (a) { this.m = a; this.j("IsMarker"); }, enumerable: false, configurable: true }); Object.defineProperty(HighlightingInfoDescription.prototype, "isFullRange", { get: function () { return this.l; }, set: function (a) { this.l = a; this.j("IsFullRange"); }, enumerable: false, configurable: true }); Object.defineProperty(HighlightingInfoDescription.prototype, "isExclusive", { get: function () { return this.k; }, set: function (a) { this.k = a; this.j("IsExclusive"); }, enumerable: false, configurable: true }); Object.defineProperty(HighlightingInfoDescription.prototype, "contextRef", { get: function () { return this.w; }, set: function (a) { this.w = a; this.j("ContextRef"); }, enumerable: false, configurable: true }); HighlightingInfoDescription.$t = markType(HighlightingInfoDescription, 'HighlightingInfoDescription', Description.$); return HighlightingInfoDescription; }(Description)); export { HighlightingInfoDescription };