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.p = null;
_this.l = null;
_this.o = null;
_this.i = false;
_this.m = null;
_this.n = 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.p;
},
set: function (a) {
this.p = a;
this.g("ID");
},
enumerable: false,
configurable: true
});
Object.defineProperty(FilterOperandDescription.prototype, "displayName", {
get: function () {
return this.l;
},
set: function (a) {
this.l = a;
this.g("DisplayName");
},
enumerable: false,
configurable: true
});
Object.defineProperty(FilterOperandDescription.prototype, "icon", {
get: function () {
return this.o;
},
set: function (a) {
this.o = a;
this.g("Icon");
},
enumerable: false,
configurable: true
});
Object.defineProperty(FilterOperandDescription.prototype, "isInputRequired", {
get: function () {
return this.i;
},
set: function (a) {
this.i = a;
this.g("IsInputRequired");
},
enumerable: false,
configurable: true
});
Object.defineProperty(FilterOperandDescription.prototype, "editorType", {
get: function () {
return this.m;
},
set: function (a) {
this.m = a;
this.g("EditorType");
},
enumerable: false,
configurable: true
});
Object.defineProperty(FilterOperandDescription.prototype, "filterRequestedRef", {
get: function () {
return this.n;
},
set: function (a) {
this.n = a;
this.g("FilterRequestedRef");
},
enumerable: false,
configurable: true
});
FilterOperandDescription.$t = markType(FilterOperandDescription, 'FilterOperandDescription', Description.$);
FilterOperandDescription.__marshalByValue = true;
FilterOperandDescription.__marshalByValueAlias = "FilterOperand";
return FilterOperandDescription;
}(Description));
export { FilterOperandDescription };