igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
83 lines (82 loc) • 2.88 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 SeriesMatcherDescription = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(SeriesMatcherDescription, _super);
function SeriesMatcherDescription() {
var _this = _super.call(this) || this;
_this.q = null;
_this.l = 0;
_this.p = null;
_this.o = null;
return _this;
}
SeriesMatcherDescription.prototype.get_type = function () {
return "SeriesMatcher";
};
Object.defineProperty(SeriesMatcherDescription.prototype, "type", {
get: function () {
return this.get_type();
},
enumerable: false,
configurable: true
});
Object.defineProperty(SeriesMatcherDescription.prototype, "title", {
get: function () {
return this.q;
},
set: function (a) {
this.q = a;
this.j("Title");
},
enumerable: false,
configurable: true
});
Object.defineProperty(SeriesMatcherDescription.prototype, "index", {
get: function () {
return this.l;
},
set: function (a) {
this.l = a;
this.j("Index");
},
enumerable: false,
configurable: true
});
Object.defineProperty(SeriesMatcherDescription.prototype, "memberPathType", {
get: function () {
return this.p;
},
set: function (a) {
this.p = a;
this.j("MemberPathType");
},
enumerable: false,
configurable: true
});
Object.defineProperty(SeriesMatcherDescription.prototype, "memberPath", {
get: function () {
return this.o;
},
set: function (a) {
this.o = a;
this.j("MemberPath");
},
enumerable: false,
configurable: true
});
SeriesMatcherDescription.$t = markType(SeriesMatcherDescription, 'SeriesMatcherDescription', Description.$);
SeriesMatcherDescription.__marshalByValue = true;
SeriesMatcherDescription.__marshalByValueAlias = "SeriesMatcher";
return SeriesMatcherDescription;
}(Description));
export { SeriesMatcherDescription };