igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
67 lines (66 loc) • 2.19 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 { Description } from "./Description";
import { markType } from "./type";
/**
* @hidden
*/
export let GridFilterDialogViewModelRowDescription = /*@__PURE__*/ (() => {
class GridFilterDialogViewModelRowDescription extends Description {
constructor() {
super();
this.l = null;
this.o = null;
this.k = null;
this.p = null;
this.q = null;
}
get_type() {
return "GridFilterDialogViewModelRow";
}
get type() {
return this.get_type();
}
get operators() {
return this.l;
}
set operators(a) {
this.l = a;
this.j("Operators");
}
get currentOperator() {
return this.o;
}
set currentOperator(a) {
this.o = a;
this.j("CurrentOperator");
}
get operandNumber() {
return this.k;
}
set operandNumber(a) {
this.k = a;
this.j("OperandNumber");
}
get operand1Ref() {
return this.p;
}
set operand1Ref(a) {
this.p = a;
this.j("Operand1Ref");
}
get operand2Ref() {
return this.q;
}
set operand2Ref(a) {
this.q = a;
this.j("Operand2Ref");
}
}
GridFilterDialogViewModelRowDescription.$t = markType(GridFilterDialogViewModelRowDescription, 'GridFilterDialogViewModelRowDescription', Description.$);
return GridFilterDialogViewModelRowDescription;
})();