UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

77 lines (76 loc) 2.38 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 FilterOperandDescription = /*@__PURE__*/ (() => { class FilterOperandDescription extends Description { constructor() { super(); this.s = null; this.o = null; this.r = null; this.l = false; this.p = null; this.q = null; } get_type() { return "FilterOperand"; } get type() { return this.get_type(); } get iD() { return this.s; } set iD(a) { this.s = a; this.j("ID"); } get displayName() { return this.o; } set displayName(a) { this.o = a; this.j("DisplayName"); } get icon() { return this.r; } set icon(a) { this.r = a; this.j("Icon"); } get isInputRequired() { return this.l; } set isInputRequired(a) { this.l = a; this.j("IsInputRequired"); } get editorType() { return this.p; } set editorType(a) { this.p = a; this.j("EditorType"); } get filterRequestedRef() { return this.q; } set filterRequestedRef(a) { this.q = a; this.j("FilterRequestedRef"); } } FilterOperandDescription.$t = markType(FilterOperandDescription, 'FilterOperandDescription', Description.$); FilterOperandDescription.__marshalByValue = true; FilterOperandDescription.__marshalByValueAlias = "FilterOperand"; return FilterOperandDescription; })();