UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

83 lines (82 loc) 2.52 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 ToolActionEventDetailDescription = /*@__PURE__*/ (() => { class ToolActionEventDetailDescription extends Description { constructor() { super(); this.f = null; this.p = null; this.i = false; this.h = false; this.n = 0; this.l = new Date(); this.q = null; } get_type() { return "ToolActionEventDetail"; } get type() { return this.get_type(); } get action() { return this.f; } set action(a) { this.f = a; this.e("Action"); } get actionType() { return this.p; } set actionType(a) { this.p = a; this.e("ActionType"); } get isModified() { return this.i; } set isModified(a) { this.i = a; this.e("IsModified"); } get boolValue() { return this.h; } set boolValue(a) { this.h = a; this.e("BoolValue"); } get numberValue() { return this.n; } set numberValue(a) { this.n = a; this.e("NumberValue"); } get dateTimeValue() { return this.l; } set dateTimeValue(a) { this.l = a; this.e("DateTimeValue"); } get untypedValueRef() { return this.q; } set untypedValueRef(a) { this.q = a; this.e("UntypedValueRef"); } } ToolActionEventDetailDescription.$t = markType(ToolActionEventDetailDescription, 'ToolActionEventDetailDescription', Description.$); return ToolActionEventDetailDescription; })();