igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
52 lines (51 loc) • 2.27 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 { WebExpressionTreeDescription } from "./WebExpressionTreeDescription";
import { markType } from "./type";
/**
* @hidden
*/
var WebFilteringExpressionsTreeDescription = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(WebFilteringExpressionsTreeDescription, _super);
function WebFilteringExpressionsTreeDescription() {
var _this = _super.call(this) || this;
_this.ab = null;
_this.y = null;
return _this;
}
WebFilteringExpressionsTreeDescription.prototype.get_type = function () {
return "WebFilteringExpressionsTree";
};
Object.defineProperty(WebFilteringExpressionsTreeDescription.prototype, "treeType", {
get: function () {
return this.ab;
},
set: function (a) {
this.ab = a;
this.j("TreeType");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebFilteringExpressionsTreeDescription.prototype, "owner", {
get: function () {
return this.y;
},
set: function (a) {
this.y = a;
this.j("Owner");
},
enumerable: false,
configurable: true
});
WebFilteringExpressionsTreeDescription.$t = markType(WebFilteringExpressionsTreeDescription, 'WebFilteringExpressionsTreeDescription', WebExpressionTreeDescription.$);
WebFilteringExpressionsTreeDescription.__marshalByValue1 = true;
WebFilteringExpressionsTreeDescription.__marshalByValueAlias1 = "FilteringExpressionsTree";
return WebFilteringExpressionsTreeDescription;
}(WebExpressionTreeDescription));
export { WebFilteringExpressionsTreeDescription };