igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
107 lines (106 loc) • 3.57 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 FilterOperandDescription = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(FilterOperandDescription, _super);
function FilterOperandDescription() {
var _this = _super.call(this) || this;
_this.s = null;
_this.o = null;
_this.r = null;
_this.l = false;
_this.p = null;
_this.q = null;
return _this;
}
FilterOperandDescription.prototype.get_type = function () {
return "FilterOperand";
};
Object.defineProperty(FilterOperandDescription.prototype, "type", {
get: function () {
return this.get_type();
},
enumerable: false,
configurable: true
});
Object.defineProperty(FilterOperandDescription.prototype, "iD", {
get: function () {
return this.s;
},
set: function (a) {
this.s = a;
this.j("ID");
},
enumerable: false,
configurable: true
});
Object.defineProperty(FilterOperandDescription.prototype, "displayName", {
get: function () {
return this.o;
},
set: function (a) {
this.o = a;
this.j("DisplayName");
},
enumerable: false,
configurable: true
});
Object.defineProperty(FilterOperandDescription.prototype, "icon", {
get: function () {
return this.r;
},
set: function (a) {
this.r = a;
this.j("Icon");
},
enumerable: false,
configurable: true
});
Object.defineProperty(FilterOperandDescription.prototype, "isInputRequired", {
get: function () {
return this.l;
},
set: function (a) {
this.l = a;
this.j("IsInputRequired");
},
enumerable: false,
configurable: true
});
Object.defineProperty(FilterOperandDescription.prototype, "editorType", {
get: function () {
return this.p;
},
set: function (a) {
this.p = a;
this.j("EditorType");
},
enumerable: false,
configurable: true
});
Object.defineProperty(FilterOperandDescription.prototype, "filterRequestedRef", {
get: function () {
return this.q;
},
set: function (a) {
this.q = a;
this.j("FilterRequestedRef");
},
enumerable: false,
configurable: true
});
FilterOperandDescription.$t = markType(FilterOperandDescription, 'FilterOperandDescription', Description.$);
FilterOperandDescription.__marshalByValue = true;
FilterOperandDescription.__marshalByValueAlias = "FilterOperand";
return FilterOperandDescription;
}(Description));
export { FilterOperandDescription };