igniteui-react-core
Version:
Ignite UI React Core.
57 lines (56 loc) • 2.87 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 { DataAnnotationItemDescription } from "./DataAnnotationItemDescription";
/**
* @hidden
*/
var DataAnnotationItemDescriptionMetadata = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(DataAnnotationItemDescriptionMetadata, _super);
function DataAnnotationItemDescriptionMetadata() {
return _super !== null && _super.apply(this, arguments) || this;
}
DataAnnotationItemDescriptionMetadata.b = function (a) {
if (DataAnnotationItemDescriptionMetadata.a == null) {
DataAnnotationItemDescriptionMetadata.a = new Dictionary$2(String_$type, String_$type, 0);
DataAnnotationItemDescriptionMetadata.c(DataAnnotationItemDescriptionMetadata.a);
}
if (a.k(DataAnnotationItemDescriptionMetadata.a)) {
return;
}
a.ac(DataAnnotationItemDescriptionMetadata.a);
};
DataAnnotationItemDescriptionMetadata.c = function (a) {
a.item("DataIndex", "Number:int");
a.item("StartLabelX", "String");
a.item("StartLabelY", "String");
a.item("EndLabelX", "String");
a.item("EndLabelY", "String");
a.item("CenterLabelY", "String");
a.item("CenterLabelX", "String");
a.item("ShapeStartX", "Number:double");
a.item("ShapeStartY", "Number:double");
a.item("ShapeEndX", "Number:double");
a.item("ShapeEndY", "Number:double");
a.item("ShapeCenterX", "Number:double");
a.item("ShapeCenterY", "Number:double");
a.item("ShapeBrush", "Brush");
a.item("ShapeOutline", "Brush");
a.item("ShapeThickness", "Number:double");
};
DataAnnotationItemDescriptionMetadata.d = function (a) {
DataAnnotationItemDescriptionMetadata.b(a);
a.ae("DataAnnotationItem", function () { return new DataAnnotationItemDescription(); });
a.ad("DataAnnotationItem", DataAnnotationItemDescriptionMetadata.a);
};
DataAnnotationItemDescriptionMetadata.$t = markType(DataAnnotationItemDescriptionMetadata, 'DataAnnotationItemDescriptionMetadata');
DataAnnotationItemDescriptionMetadata.a = null;
return DataAnnotationItemDescriptionMetadata;
}(Base));
export { DataAnnotationItemDescriptionMetadata };