igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
71 lines (70 loc) • 2.91 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 { __extends } from "tslib";
import { Description } from "./Description";
import { markType } from "./type";
/**
* @hidden
*/
var WebQueryBuilderSearchValueContextDescription = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(WebQueryBuilderSearchValueContextDescription, _super);
function WebQueryBuilderSearchValueContextDescription() {
var _this = _super.call(this) || this;
_this.n = null;
_this.k = null;
_this.q = null;
return _this;
}
WebQueryBuilderSearchValueContextDescription.prototype.get_type = function () {
return "WebQueryBuilderSearchValueContext";
};
Object.defineProperty(WebQueryBuilderSearchValueContextDescription.prototype, "type", {
get: function () {
return this.get_type();
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebQueryBuilderSearchValueContextDescription.prototype, "implicit", {
get: function () {
return this.n;
},
set: function (a) {
this.n = a;
this.j("Implicit");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebQueryBuilderSearchValueContextDescription.prototype, "selectedField", {
get: function () {
return this.k;
},
set: function (a) {
this.k = a;
this.j("SelectedField");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebQueryBuilderSearchValueContextDescription.prototype, "selectedCondition", {
get: function () {
return this.q;
},
set: function (a) {
this.q = a;
this.j("SelectedCondition");
},
enumerable: false,
configurable: true
});
WebQueryBuilderSearchValueContextDescription.$t = markType(WebQueryBuilderSearchValueContextDescription, 'WebQueryBuilderSearchValueContextDescription', Description.$);
WebQueryBuilderSearchValueContextDescription.__marshalByValue = true;
WebQueryBuilderSearchValueContextDescription.__marshalByValueAlias = "QueryBuilderSearchValueContext";
return WebQueryBuilderSearchValueContextDescription;
}(Description));
export { WebQueryBuilderSearchValueContextDescription };