igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
83 lines (82 loc) • 2.66 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 { Description } from "./Description";
import { markType } from "./type";
/**
* @hidden
*/
export let SeriesLayerPropertyOverlayDescription = /*@__PURE__*/ (() => {
class SeriesLayerPropertyOverlayDescription extends Description {
constructor() {
super();
this.l = false;
this.k = false;
this.p = null;
this.o = null;
this.r = null;
this.q = null;
this.s = null;
}
get_type() {
return "SeriesLayerPropertyOverlay";
}
get type() {
return this.get_type();
}
get isSourceOverlay() {
return this.l;
}
set isSourceOverlay(a) {
this.l = a;
this.j("IsSourceOverlay");
}
get isAlwaysApplied() {
return this.k;
}
set isAlwaysApplied(a) {
this.k = a;
this.j("IsAlwaysApplied");
}
get propertyName() {
return this.p;
}
set propertyName(a) {
this.p = a;
this.j("PropertyName");
}
get currentValuePropertyName() {
return this.o;
}
set currentValuePropertyName(a) {
this.o = a;
this.j("CurrentValuePropertyName");
}
get valueRef() {
return this.r;
}
set valueRef(a) {
this.r = a;
this.j("ValueRef");
}
get propertyUpdatedRef() {
return this.q;
}
set propertyUpdatedRef(a) {
this.q = a;
this.j("PropertyUpdatedRef");
}
get valueResolvingRef() {
return this.s;
}
set valueResolvingRef(a) {
this.s = a;
this.j("ValueResolvingRef");
}
}
SeriesLayerPropertyOverlayDescription.$t = markType(SeriesLayerPropertyOverlayDescription, 'SeriesLayerPropertyOverlayDescription', Description.$);
return SeriesLayerPropertyOverlayDescription;
})();