igniteui-react-core
Version:
Ignite UI React Core.
69 lines (68 loc) • 2.32 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 GroupDataDescription = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(GroupDataDescription, _super);
function GroupDataDescription() {
var _this = _super.call(this) || this;
_this.i = null;
_this.j = null;
_this.h = null;
return _this;
}
GroupDataDescription.prototype.get_type = function () {
return "GroupData";
};
Object.defineProperty(GroupDataDescription.prototype, "type", {
get: function () {
return this.get_type();
},
enumerable: false,
configurable: true
});
Object.defineProperty(GroupDataDescription.prototype, "groupName", {
get: function () {
return this.i;
},
set: function (a) {
this.i = a;
this.g("GroupName");
},
enumerable: false,
configurable: true
});
Object.defineProperty(GroupDataDescription.prototype, "groupValueRef", {
get: function () {
return this.j;
},
set: function (a) {
this.j = a;
this.g("GroupValueRef");
},
enumerable: false,
configurable: true
});
Object.defineProperty(GroupDataDescription.prototype, "formattedText", {
get: function () {
return this.h;
},
set: function (a) {
this.h = a;
this.g("FormattedText");
},
enumerable: false,
configurable: true
});
GroupDataDescription.$t = markType(GroupDataDescription, 'GroupDataDescription', Description.$);
return GroupDataDescription;
}(Description));
export { GroupDataDescription };