igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
69 lines (68 loc) • 2.24 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 WebFilteringOperationDescription = /*@__PURE__*/ (() => {
class WebFilteringOperationDescription extends Description {
constructor() {
super();
this.n = false;
this.m = false;
this.s = null;
this.l = false;
this.t = null;
}
get_type() {
return "WebFilteringOperation";
}
get type() {
return this.get_type();
}
get isUnary() {
return this.n;
}
set isUnary(a) {
this.n = a;
this.j("IsUnary");
}
get isNestedQuery() {
return this.m;
}
set isNestedQuery(a) {
this.m = a;
this.j("IsNestedQuery");
}
get iconName() {
return this.s;
}
set iconName(a) {
this.s = a;
this.j("IconName");
}
get hidden() {
return this.l;
}
set hidden(a) {
this.l = a;
this.j("Hidden");
}
get logicRef() {
return this.t;
}
set logicRef(a) {
this.t = a;
this.j("LogicRef");
}
}
WebFilteringOperationDescription.$t = markType(WebFilteringOperationDescription, 'WebFilteringOperationDescription', Description.$);
WebFilteringOperationDescription.__marshalByValue = true;
WebFilteringOperationDescription.__marshalByValueAlias = "FilteringOperation";
return WebFilteringOperationDescription;
})();