igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
53 lines (52 loc) • 2.02 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 WebQueryBuilderSearchValueContextDescription = /*@__PURE__*/ (() => {
class WebQueryBuilderSearchValueContextDescription extends Description {
constructor() {
super();
this.n = null;
this.k = null;
this.q = null;
}
get_type() {
return "WebQueryBuilderSearchValueContext";
}
get type() {
return this.get_type();
}
get implicit() {
return this.n;
}
set implicit(a) {
this.n = a;
this.j("Implicit");
}
get selectedField() {
return this.k;
}
set selectedField(a) {
this.k = a;
this.j("SelectedField");
}
get selectedCondition() {
return this.q;
}
set selectedCondition(a) {
this.q = a;
this.j("SelectedCondition");
}
}
WebQueryBuilderSearchValueContextDescription.$t = markType(WebQueryBuilderSearchValueContextDescription, 'WebQueryBuilderSearchValueContextDescription', Description.$);
WebQueryBuilderSearchValueContextDescription.__marshalByValue = true;
WebQueryBuilderSearchValueContextDescription.__marshalByValueAlias = "QueryBuilderSearchValueContext";
return WebQueryBuilderSearchValueContextDescription;
})();