igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
72 lines (71 loc) • 2.73 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 { DataAnnotationShapeLayerDescription } from "./DataAnnotationShapeLayerDescription";
import { markType } from "./type";
/**
* @hidden
*/
export let DataAnnotationSliceLayerDescription = /*@__PURE__*/ (() => {
class DataAnnotationSliceLayerDescription extends DataAnnotationShapeLayerDescription {
constructor() {
super();
this.kf = null;
this.ke = null;
this.kb = null;
this.ka = null;
this.kd = null;
this.kc = null;
}
get_type() {
return "DataAnnotationSliceLayer";
}
get annotationValueMemberPath() {
return this.kf;
}
set annotationValueMemberPath(a) {
this.kf = a;
this.j("AnnotationValueMemberPath");
}
get annotationLabelMemberPath() {
return this.ke;
}
set annotationLabelMemberPath(a) {
this.ke = a;
this.j("AnnotationLabelMemberPath");
}
get annotationBadgeEnabledMemberPath() {
return this.kb;
}
set annotationBadgeEnabledMemberPath(a) {
this.kb = a;
this.j("AnnotationBadgeEnabledMemberPath");
}
get annotationBadgeBackgroundMemberPath() {
return this.ka;
}
set annotationBadgeBackgroundMemberPath(a) {
this.ka = a;
this.j("AnnotationBadgeBackgroundMemberPath");
}
get annotationBadgeOutlineMemberPath() {
return this.kd;
}
set annotationBadgeOutlineMemberPath(a) {
this.kd = a;
this.j("AnnotationBadgeOutlineMemberPath");
}
get annotationBadgeImageMemberPath() {
return this.kc;
}
set annotationBadgeImageMemberPath(a) {
this.kc = a;
this.j("AnnotationBadgeImageMemberPath");
}
}
DataAnnotationSliceLayerDescription.$t = markType(DataAnnotationSliceLayerDescription, 'DataAnnotationSliceLayerDescription', DataAnnotationShapeLayerDescription.$);
return DataAnnotationSliceLayerDescription;
})();