igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
48 lines (47 loc) • 1.86 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 { VirtualDataSourceDescription } from "./VirtualDataSourceDescription";
import { markType } from "./type";
/**
* @hidden
*/
export let GenericInternalVirtualDataSourceDescription = /*@__PURE__*/ (() => {
class GenericInternalVirtualDataSourceDescription extends VirtualDataSourceDescription {
constructor() {
super();
this.bf = false;
this.bg = false;
this.bj = null;
}
get_type() {
return "GenericInternalVirtualDataSource";
}
get isAggregationSupported() {
return this.bf;
}
set isAggregationSupported(a) {
this.bf = a;
this.j("IsAggregationSupported");
}
get isClone() {
return this.bg;
}
set isClone(a) {
this.bg = a;
this.j("IsClone");
}
get pageRequestedRef() {
return this.bj;
}
set pageRequestedRef(a) {
this.bj = a;
this.j("PageRequestedRef");
}
}
GenericInternalVirtualDataSourceDescription.$t = markType(GenericInternalVirtualDataSourceDescription, 'GenericInternalVirtualDataSourceDescription', VirtualDataSourceDescription.$);
return GenericInternalVirtualDataSourceDescription;
})();