UNPKG

igniteui-react-core

Version:
88 lines (87 loc) 3.2 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 { WebFilteringExpressionsTreeOrFilteringExpressionDescription } from "./WebFilteringExpressionsTreeOrFilteringExpressionDescription"; import { markType } from "./type"; /** * @hidden */ var WebExpressionTreeDescription = /** @class */ /*@__PURE__*/ (function (_super) { __extends(WebExpressionTreeDescription, _super); function WebExpressionTreeDescription() { var _this = _super.call(this) || this; _this.i = null; _this.q = null; _this.p = null; _this.o = null; _this.j = null; return _this; } WebExpressionTreeDescription.prototype.get_type = function () { return "WebExpressionTree"; }; Object.defineProperty(WebExpressionTreeDescription.prototype, "filteringOperands", { get: function () { return this.i; }, set: function (a) { this.i = a; this.g("FilteringOperands"); }, enumerable: false, configurable: true }); Object.defineProperty(WebExpressionTreeDescription.prototype, "operator", { get: function () { return this.q; }, set: function (a) { this.q = a; this.g("Operator"); }, enumerable: false, configurable: true }); Object.defineProperty(WebExpressionTreeDescription.prototype, "fieldName", { get: function () { return this.p; }, set: function (a) { this.p = a; this.g("FieldName"); }, enumerable: false, configurable: true }); Object.defineProperty(WebExpressionTreeDescription.prototype, "entity", { get: function () { return this.o; }, set: function (a) { this.o = a; this.g("Entity"); }, enumerable: false, configurable: true }); Object.defineProperty(WebExpressionTreeDescription.prototype, "returnFields", { get: function () { return this.j; }, set: function (a) { this.j = a; this.g("ReturnFields"); }, enumerable: false, configurable: true }); WebExpressionTreeDescription.$t = markType(WebExpressionTreeDescription, 'WebExpressionTreeDescription', WebFilteringExpressionsTreeOrFilteringExpressionDescription.$); WebExpressionTreeDescription.__marshalByValue = true; WebExpressionTreeDescription.__marshalByValueAlias = "ExpressionTree"; return WebExpressionTreeDescription; }(WebFilteringExpressionsTreeOrFilteringExpressionDescription)); export { WebExpressionTreeDescription };