igniteui-angular-charts
Version:
Ignite UI Angular charting components for building rich data visualizations for modern web apps.
67 lines (66 loc) • 2.56 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 { ConfigurationMessage_Spark } from "./ConfigurationMessage_Spark";
import { markType } from "igniteui-angular-core";
/**
* @hidden
*/
var PropertyChangedMessage_Spark = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(PropertyChangedMessage_Spark, _super);
function PropertyChangedMessage_Spark() {
var _this = _super !== null && _super.apply(this, arguments) || this;
_this.f = null;
_this.c = null;
_this.b = null;
return _this;
}
Object.defineProperty(PropertyChangedMessage_Spark.prototype, "propertyName", {
get: function () {
return this.f;
},
set: function (a) {
this.f = a;
},
enumerable: false,
configurable: true
});
Object.defineProperty(PropertyChangedMessage_Spark.prototype, "oldValue", {
get: function () {
return this.c;
},
set: function (a) {
this.c = a;
},
enumerable: false,
configurable: true
});
Object.defineProperty(PropertyChangedMessage_Spark.prototype, "newValue", {
get: function () {
return this.b;
},
set: function (a) {
this.b = a;
},
enumerable: false,
configurable: true
});
PropertyChangedMessage_Spark.prototype.toString = function () {
var a = "null";
var b = "null";
if (this.oldValue != null) {
a = this.oldValue.toString();
}
if (this.newValue != null) {
b = this.newValue.toString();
}
return "PropertyChangedMessage[" + this.propertyName + ", " + a + ", " + b + "]";
};
PropertyChangedMessage_Spark.$t = markType(PropertyChangedMessage_Spark, 'PropertyChangedMessage_Spark', ConfigurationMessage_Spark.$);
return PropertyChangedMessage_Spark;
}(ConfigurationMessage_Spark));
export { PropertyChangedMessage_Spark };