UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

74 lines (73 loc) 2.59 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 { WebFilteringExpressionsTreeOrFilteringExpressionDescription } from "./WebFilteringExpressionsTreeOrFilteringExpressionDescription"; import { markType } from "./type"; /** * @hidden */ export let WebFilteringExpressionDescription = /*@__PURE__*/ (() => { class WebFilteringExpressionDescription extends WebFilteringExpressionsTreeOrFilteringExpressionDescription { constructor() { super(); this.t = null; this.k = null; this.s = null; this.p = null; this.i = null; this.n = false; } get_type() { return "WebFilteringExpression"; } get fieldName() { return this.t; } set fieldName(a) { this.t = a; this.g("FieldName"); } get condition() { return this.k; } set condition(a) { this.k = a; this.g("Condition"); } get conditionName() { return this.s; } set conditionName(a) { this.s = a; this.g("ConditionName"); } get searchVal() { return this.p; } set searchVal(a) { this.p = a; this.g("SearchVal"); } get searchTree() { return this.i; } set searchTree(a) { this.i = a; this.g("SearchTree"); } get ignoreCase() { return this.n; } set ignoreCase(a) { this.n = a; this.g("IgnoreCase"); } } WebFilteringExpressionDescription.$t = markType(WebFilteringExpressionDescription, 'WebFilteringExpressionDescription', WebFilteringExpressionsTreeOrFilteringExpressionDescription.$); WebFilteringExpressionDescription.__marshalByValue = true; WebFilteringExpressionDescription.__marshalByValueAlias = "FilteringExpression"; return WebFilteringExpressionDescription; })();