igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
64 lines (63 loc) • 2.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 { UserBaseAnnotationDescription } from "./UserBaseAnnotationDescription";
import { markType } from "./type";
/**
* @hidden
*/
var UserAxisAnnotationDescription = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(UserAxisAnnotationDescription, _super);
function UserAxisAnnotationDescription() {
var _this = _super.call(this) || this;
_this.a5 = null;
_this.az = null;
_this.a2 = 0;
return _this;
}
UserAxisAnnotationDescription.prototype.get_type = function () {
return "UserAxisAnnotation";
};
Object.defineProperty(UserAxisAnnotationDescription.prototype, "targetAxisRef", {
get: function () {
return this.a5;
},
set: function (a) {
this.a5 = a;
this.j("TargetAxisRef");
},
enumerable: false,
configurable: true
});
Object.defineProperty(UserAxisAnnotationDescription.prototype, "targetAxisMatcher", {
get: function () {
return this.az;
},
set: function (a) {
this.az = a;
this.j("TargetAxisMatcher");
},
enumerable: false,
configurable: true
});
Object.defineProperty(UserAxisAnnotationDescription.prototype, "value", {
get: function () {
return this.a2;
},
set: function (a) {
this.a2 = a;
this.j("Value");
},
enumerable: false,
configurable: true
});
UserAxisAnnotationDescription.$t = markType(UserAxisAnnotationDescription, 'UserAxisAnnotationDescription', UserBaseAnnotationDescription.$);
UserAxisAnnotationDescription.__marshalByValue1 = true;
UserAxisAnnotationDescription.__marshalByValueAlias1 = "UserAxisAnnotation";
return UserAxisAnnotationDescription;
}(UserBaseAnnotationDescription));
export { UserAxisAnnotationDescription };