igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
74 lines (73 loc) • 2.59 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 { WebFilteringExpressionsTreeOrFilteringExpressionDescription } from "./WebFilteringExpressionsTreeOrFilteringExpressionDescription";
import { markType } from "./type";
/**
* @hidden
*/
export let WebFilteringExpressionDescription = /*@__PURE__*/ (() => {
class WebFilteringExpressionDescription extends WebFilteringExpressionsTreeOrFilteringExpressionDescription {
constructor() {
super();
this.w = null;
this.n = null;
this.v = null;
this.s = null;
this.l = null;
this.q = false;
}
get_type() {
return "WebFilteringExpression";
}
get fieldName() {
return this.w;
}
set fieldName(a) {
this.w = a;
this.j("FieldName");
}
get condition() {
return this.n;
}
set condition(a) {
this.n = a;
this.j("Condition");
}
get conditionName() {
return this.v;
}
set conditionName(a) {
this.v = a;
this.j("ConditionName");
}
get searchVal() {
return this.s;
}
set searchVal(a) {
this.s = a;
this.j("SearchVal");
}
get searchTree() {
return this.l;
}
set searchTree(a) {
this.l = a;
this.j("SearchTree");
}
get ignoreCase() {
return this.q;
}
set ignoreCase(a) {
this.q = a;
this.j("IgnoreCase");
}
}
WebFilteringExpressionDescription.$t = markType(WebFilteringExpressionDescription, 'WebFilteringExpressionDescription', WebFilteringExpressionsTreeOrFilteringExpressionDescription.$);
WebFilteringExpressionDescription.__marshalByValue = true;
WebFilteringExpressionDescription.__marshalByValueAlias = "FilteringExpression";
return WebFilteringExpressionDescription;
})();