igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
77 lines (76 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 { Description } from "./Description";
import { markType } from "./type";
/**
* @hidden
*/
export let AxisMatcherDescription = /*@__PURE__*/ (() => {
class AxisMatcherDescription extends Description {
constructor() {
super();
this.t = null;
this.l = 0;
this.s = null;
this.r = null;
this.q = null;
this.m = 0;
}
get_type() {
return "AxisMatcher";
}
get type() {
return this.get_type();
}
get title() {
return this.t;
}
set title(a) {
this.t = a;
this.j("Title");
}
get index() {
return this.l;
}
set index(a) {
this.l = a;
this.j("Index");
}
get memberPathType() {
return this.s;
}
set memberPathType(a) {
this.s = a;
this.j("MemberPathType");
}
get memberPath() {
return this.r;
}
set memberPath(a) {
this.r = a;
this.j("MemberPath");
}
get axisType() {
return this.q;
}
set axisType(a) {
this.q = a;
this.j("AxisType");
}
get typedIndex() {
return this.m;
}
set typedIndex(a) {
this.m = a;
this.j("TypedIndex");
}
}
AxisMatcherDescription.$t = markType(AxisMatcherDescription, 'AxisMatcherDescription', Description.$);
AxisMatcherDescription.__marshalByValue = true;
AxisMatcherDescription.__marshalByValueAlias = "AxisMatcher";
return AxisMatcherDescription;
})();