igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
88 lines (87 loc) • 3.28 kB
JavaScript
/*
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.l = null;
_this.t = null;
_this.s = null;
_this.r = null;
_this.m = null;
return _this;
}
WebExpressionTreeDescription.prototype.get_type = function () {
return "WebExpressionTree";
};
Object.defineProperty(WebExpressionTreeDescription.prototype, "filteringOperands", {
get: function () {
return this.l;
},
set: function (a) {
this.l = a;
this.j("FilteringOperands");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebExpressionTreeDescription.prototype, "operator", {
get: function () {
return this.t;
},
set: function (a) {
this.t = a;
this.j("Operator");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebExpressionTreeDescription.prototype, "fieldName", {
get: function () {
return this.s;
},
set: function (a) {
this.s = a;
this.j("FieldName");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebExpressionTreeDescription.prototype, "entity", {
get: function () {
return this.r;
},
set: function (a) {
this.r = a;
this.j("Entity");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebExpressionTreeDescription.prototype, "returnFields", {
get: function () {
return this.m;
},
set: function (a) {
this.m = a;
this.j("ReturnFields");
},
enumerable: false,
configurable: true
});
WebExpressionTreeDescription.$t = markType(WebExpressionTreeDescription, 'WebExpressionTreeDescription', WebFilteringExpressionsTreeOrFilteringExpressionDescription.$);
WebExpressionTreeDescription.__marshalByValue = true;
WebExpressionTreeDescription.__marshalByValueAlias = "ExpressionTree";
return WebExpressionTreeDescription;
}(WebFilteringExpressionsTreeOrFilteringExpressionDescription));
export { WebExpressionTreeDescription };