igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
114 lines (113 loc) • 3.5 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.an = false;
this.aw = null;
this.ak = false;
this.ax = null;
this.am = false;
this.ad = null;
this.ai = false;
this.ae = null;
this.al = false;
this.av = null;
this.aj = false;
}
get_type() {
return "OperationFilterExpression";
}
get isComparisonOperation() {
return this.an;
}
set isComparisonOperation(a) {
this.an = a;
this.j("IsComparisonOperation");
}
get propertyName() {
return this.aw;
}
set propertyName(a) {
this.aw = a;
this.j("PropertyName");
}
get hasPropertyName() {
return this.ak;
}
set hasPropertyName(a) {
this.ak = a;
this.j("HasPropertyName");
}
get valueRef() {
return this.ax;
}
set valueRef(a) {
this.ax = a;
this.j("ValueRef");
}
get hasValue() {
return this.am;
}
set hasValue(a) {
this.am = a;
this.j("HasValue");
}
get left() {
return this.ad;
}
set left(a) {
this.ad = a;
this.j("Left");
}
get hasLeft() {
return this.ai;
}
set hasLeft(a) {
this.ai = a;
this.j("HasLeft");
}
get right() {
return this.ae;
}
set right(a) {
this.ae = a;
this.j("Right");
}
get hasRight() {
return this.al;
}
set hasRight(a) {
this.al = a;
this.j("HasRight");
}
get operator() {
return this.av;
}
set operator(a) {
this.av = a;
this.j("Operator");
}
get hasOperator() {
return this.aj;
}
set hasOperator(a) {
this.aj = a;
this.j("HasOperator");
}
}
OperationFilterExpressionDescription.$t = markType(OperationFilterExpressionDescription, 'OperationFilterExpressionDescription', FilterExpressionDescription.$);
OperationFilterExpressionDescription.__marshalByValue1 = true;
OperationFilterExpressionDescription.__marshalByValueAlias1 = "OperationFilterExpression";
return OperationFilterExpressionDescription;
})();