igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
100 lines (99 loc) • 3.72 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 WebFilteringExpressionDescription = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(WebFilteringExpressionDescription, _super);
function WebFilteringExpressionDescription() {
var _this = _super.call(this) || this;
_this.w = null;
_this.n = null;
_this.v = null;
_this.s = null;
_this.l = null;
_this.q = false;
return _this;
}
WebFilteringExpressionDescription.prototype.get_type = function () {
return "WebFilteringExpression";
};
Object.defineProperty(WebFilteringExpressionDescription.prototype, "fieldName", {
get: function () {
return this.w;
},
set: function (a) {
this.w = a;
this.j("FieldName");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebFilteringExpressionDescription.prototype, "condition", {
get: function () {
return this.n;
},
set: function (a) {
this.n = a;
this.j("Condition");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebFilteringExpressionDescription.prototype, "conditionName", {
get: function () {
return this.v;
},
set: function (a) {
this.v = a;
this.j("ConditionName");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebFilteringExpressionDescription.prototype, "searchVal", {
get: function () {
return this.s;
},
set: function (a) {
this.s = a;
this.j("SearchVal");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebFilteringExpressionDescription.prototype, "searchTree", {
get: function () {
return this.l;
},
set: function (a) {
this.l = a;
this.j("SearchTree");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebFilteringExpressionDescription.prototype, "ignoreCase", {
get: function () {
return this.q;
},
set: function (a) {
this.q = a;
this.j("IgnoreCase");
},
enumerable: false,
configurable: true
});
WebFilteringExpressionDescription.$t = markType(WebFilteringExpressionDescription, 'WebFilteringExpressionDescription', WebFilteringExpressionsTreeOrFilteringExpressionDescription.$);
WebFilteringExpressionDescription.__marshalByValue = true;
WebFilteringExpressionDescription.__marshalByValueAlias = "FilteringExpression";
return WebFilteringExpressionDescription;
}(WebFilteringExpressionsTreeOrFilteringExpressionDescription));
export { WebFilteringExpressionDescription };