igniteui-react-core
Version:
Ignite UI React Core.
82 lines (81 loc) • 2.64 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 { WebExpressionTreeDescription } from "./WebExpressionTreeDescription";
import { markType } from "./type";
/**
* @hidden
*/
export let WebFilteringExpressionsTreeDescription = /*@__PURE__*/ (() => {
class WebFilteringExpressionsTreeDescription extends WebExpressionTreeDescription {
get_type() {
return "WebFilteringExpressionsTree";
}
constructor() {
super();
this.u = null;
this.af = null;
this.z = null;
this.ae = null;
this.ad = null;
this.ac = null;
this.v = null;
}
get filteringOperands() {
return this.u;
}
set filteringOperands(a) {
this.u = a;
this.g("FilteringOperands");
}
get treeType() {
return this.af;
}
set treeType(a) {
this.af = a;
this.g("TreeType");
}
get owner() {
return this.z;
}
set owner(a) {
this.z = a;
this.g("Owner");
}
get operator() {
return this.ae;
}
set operator(a) {
this.ae = a;
this.g("Operator");
}
get fieldName() {
return this.ad;
}
set fieldName(a) {
this.ad = a;
this.g("FieldName");
}
get entity() {
return this.ac;
}
set entity(a) {
this.ac = a;
this.g("Entity");
}
get returnFields() {
return this.v;
}
set returnFields(a) {
this.v = a;
this.g("ReturnFields");
}
}
WebFilteringExpressionsTreeDescription.$t = /*@__PURE__*/ markType(WebFilteringExpressionsTreeDescription, 'WebFilteringExpressionsTreeDescription', WebExpressionTreeDescription.$);
WebFilteringExpressionsTreeDescription.__marshalByValue1 = true;
WebFilteringExpressionsTreeDescription.__marshalByValueAlias1 = "FilteringExpressionsTree";
return WebFilteringExpressionsTreeDescription;
})();