igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
119 lines (118 loc) • 4.27 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 WebRowSelectionEventArgsDetailDescription = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(WebRowSelectionEventArgsDetailDescription, _super);
function WebRowSelectionEventArgsDetailDescription() {
var _this = _super.call(this) || this;
_this.u = null;
_this.t = null;
_this.s = null;
_this.v = null;
_this.l = false;
_this.m = false;
_this.p = null;
return _this;
}
WebRowSelectionEventArgsDetailDescription.prototype.get_type = function () {
return "WebRowSelectionEventArgsDetail";
};
Object.defineProperty(WebRowSelectionEventArgsDetailDescription.prototype, "type", {
get: function () {
return this.get_type();
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebRowSelectionEventArgsDetailDescription.prototype, "oldSelectionRef", {
get: function () {
return this.u;
},
set: function (a) {
this.u = a;
this.j("OldSelectionRef");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebRowSelectionEventArgsDetailDescription.prototype, "newSelectionRef", {
get: function () {
return this.t;
},
set: function (a) {
this.t = a;
this.j("NewSelectionRef");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebRowSelectionEventArgsDetailDescription.prototype, "addedRef", {
get: function () {
return this.s;
},
set: function (a) {
this.s = a;
this.j("AddedRef");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebRowSelectionEventArgsDetailDescription.prototype, "removedRef", {
get: function () {
return this.v;
},
set: function (a) {
this.v = a;
this.j("RemovedRef");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebRowSelectionEventArgsDetailDescription.prototype, "allRowsSelected", {
get: function () {
return this.l;
},
set: function (a) {
this.l = a;
this.j("AllRowsSelected");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebRowSelectionEventArgsDetailDescription.prototype, "cancel", {
get: function () {
return this.m;
},
set: function (a) {
this.m = a;
this.j("Cancel");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebRowSelectionEventArgsDetailDescription.prototype, "owner", {
get: function () {
return this.p;
},
set: function (a) {
this.p = a;
this.j("Owner");
},
enumerable: false,
configurable: true
});
WebRowSelectionEventArgsDetailDescription.$t = markType(WebRowSelectionEventArgsDetailDescription, 'WebRowSelectionEventArgsDetailDescription', Description.$);
WebRowSelectionEventArgsDetailDescription.__marshalByValue = true;
WebRowSelectionEventArgsDetailDescription.__marshalByValueAlias = "RowSelectionEventArgsDetail";
return WebRowSelectionEventArgsDetailDescription;
}(Description));
export { WebRowSelectionEventArgsDetailDescription };