igniteui-react-core
Version:
Ignite UI React Core.
44 lines (43 loc) • 2.33 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 { Base, String_$type, markType } from "./type";
import { Dictionary$2 } from "./Dictionary$2";
import { BaseDataSourceDescriptionMetadata } from "./BaseDataSourceDescriptionMetadata";
import { LocalDataSourceDescription } from "./LocalDataSourceDescription";
/**
* @hidden
*/
var LocalDataSourceDescriptionMetadata = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(LocalDataSourceDescriptionMetadata, _super);
function LocalDataSourceDescriptionMetadata() {
return _super !== null && _super.apply(this, arguments) || this;
}
LocalDataSourceDescriptionMetadata.b = function (a) {
if (LocalDataSourceDescriptionMetadata.a == null) {
LocalDataSourceDescriptionMetadata.a = new Dictionary$2(String_$type, String_$type, 0);
LocalDataSourceDescriptionMetadata.c(LocalDataSourceDescriptionMetadata.a);
}
if (a.k(LocalDataSourceDescriptionMetadata.a)) {
return;
}
a.ac(LocalDataSourceDescriptionMetadata.a);
};
LocalDataSourceDescriptionMetadata.c = function (a) {
BaseDataSourceDescriptionMetadata.c(a);
a.item("DataSourceRef", "(w:ItemsSource,xam:ItemsSource,j:dataSource,wf:ItemsSource)DataRef::object");
};
LocalDataSourceDescriptionMetadata.d = function (a) {
LocalDataSourceDescriptionMetadata.b(a);
a.ae("LocalDataSource", function () { return new LocalDataSourceDescription(); });
a.ad("LocalDataSource", LocalDataSourceDescriptionMetadata.a);
};
LocalDataSourceDescriptionMetadata.$t = markType(LocalDataSourceDescriptionMetadata, 'LocalDataSourceDescriptionMetadata');
LocalDataSourceDescriptionMetadata.a = null;
return LocalDataSourceDescriptionMetadata;
}(Base));
export { LocalDataSourceDescriptionMetadata };