igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
62 lines (61 loc) • 2.57 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 { VirtualDataSourceDescription } from "./VirtualDataSourceDescription";
import { markType } from "./type";
/**
* @hidden
*/
var GenericInternalVirtualDataSourceDescription = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(GenericInternalVirtualDataSourceDescription, _super);
function GenericInternalVirtualDataSourceDescription() {
var _this = _super.call(this) || this;
_this.bf = false;
_this.bg = false;
_this.bj = null;
return _this;
}
GenericInternalVirtualDataSourceDescription.prototype.get_type = function () {
return "GenericInternalVirtualDataSource";
};
Object.defineProperty(GenericInternalVirtualDataSourceDescription.prototype, "isAggregationSupported", {
get: function () {
return this.bf;
},
set: function (a) {
this.bf = a;
this.j("IsAggregationSupported");
},
enumerable: false,
configurable: true
});
Object.defineProperty(GenericInternalVirtualDataSourceDescription.prototype, "isClone", {
get: function () {
return this.bg;
},
set: function (a) {
this.bg = a;
this.j("IsClone");
},
enumerable: false,
configurable: true
});
Object.defineProperty(GenericInternalVirtualDataSourceDescription.prototype, "pageRequestedRef", {
get: function () {
return this.bj;
},
set: function (a) {
this.bj = a;
this.j("PageRequestedRef");
},
enumerable: false,
configurable: true
});
GenericInternalVirtualDataSourceDescription.$t = markType(GenericInternalVirtualDataSourceDescription, 'GenericInternalVirtualDataSourceDescription', VirtualDataSourceDescription.$);
return GenericInternalVirtualDataSourceDescription;
}(VirtualDataSourceDescription));
export { GenericInternalVirtualDataSourceDescription };