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