igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
49 lines (48 loc) • 2.35 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 { AxisMatcherDescription } from "./AxisMatcherDescription";
/**
* @hidden
*/
var AxisMatcherDescriptionMetadata = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(AxisMatcherDescriptionMetadata, _super);
function AxisMatcherDescriptionMetadata() {
return _super !== null && _super.apply(this, arguments) || this;
}
AxisMatcherDescriptionMetadata.b = function (a) {
if (AxisMatcherDescriptionMetadata.a == null) {
AxisMatcherDescriptionMetadata.a = new Dictionary$2(String_$type, String_$type, 0);
AxisMatcherDescriptionMetadata.c(AxisMatcherDescriptionMetadata.a);
}
if (a.k(AxisMatcherDescriptionMetadata.a)) {
return;
}
a.ad(AxisMatcherDescriptionMetadata.a);
};
AxisMatcherDescriptionMetadata.c = function (a) {
a.item("__marshalByValue", "Boolean");
a.item("Name", "String");
a.item("Title", "String");
a.item("Index", "Number:int");
a.item("MemberPathType", "String");
a.item("MemberPath", "String");
a.item("AxisType", "String");
a.item("TypedIndex", "Number:int");
};
AxisMatcherDescriptionMetadata.d = function (a) {
AxisMatcherDescriptionMetadata.b(a);
a.af("AxisMatcher", function () { return new AxisMatcherDescription(); });
a.ae("AxisMatcher", AxisMatcherDescriptionMetadata.a);
};
AxisMatcherDescriptionMetadata.$t = markType(AxisMatcherDescriptionMetadata, 'AxisMatcherDescriptionMetadata');
AxisMatcherDescriptionMetadata.a = null;
return AxisMatcherDescriptionMetadata;
}(Base));
export { AxisMatcherDescriptionMetadata };