igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
66 lines (65 loc) • 2.26 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 { FilterExpressionDescription } from "./FilterExpressionDescription";
import { markType } from "./type";
/**
* @hidden
*/
export let OperationFilterExpressionDescription = /*@__PURE__*/ (() => {
class OperationFilterExpressionDescription extends FilterExpressionDescription {
constructor() {
super();
this.p = null;
this.q = null;
this.i = null;
this.j = null;
this.o = null;
}
get_type() {
return "OperationFilterExpression";
}
get propertyName() {
return this.p;
}
set propertyName(a) {
this.p = a;
this.e("PropertyName");
}
get valueRef() {
return this.q;
}
set valueRef(a) {
this.q = a;
this.e("ValueRef");
}
get left() {
return this.i;
}
set left(a) {
this.i = a;
this.e("Left");
}
get right() {
return this.j;
}
set right(a) {
this.j = a;
this.e("Right");
}
get operator() {
return this.o;
}
set operator(a) {
this.o = a;
this.e("Operator");
}
}
OperationFilterExpressionDescription.$t = markType(OperationFilterExpressionDescription, 'OperationFilterExpressionDescription', FilterExpressionDescription.$);
OperationFilterExpressionDescription.__marshalByValue1 = true;
OperationFilterExpressionDescription.__marshalByValueAlias1 = "OperationFilterExpression";
return OperationFilterExpressionDescription;
})();