igniteui-react-core
Version:
Ignite UI React Core.
69 lines (68 loc) • 2.09 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 SeriesMatcherDescription = /*@__PURE__*/ (() => {
class SeriesMatcherDescription extends Description {
get_type() {
return "SeriesMatcher";
}
get type() {
return this.get_type();
}
constructor() {
super();
this.n = null;
this.o = null;
this.i = 0;
this.m = null;
this.l = null;
}
get name() {
return this.n;
}
set name(a) {
this.n = a;
this.g("Name");
}
get title() {
return this.o;
}
set title(a) {
this.o = a;
this.g("Title");
}
get index() {
return this.i;
}
set index(a) {
this.i = a;
this.g("Index");
}
get memberPathType() {
return this.m;
}
set memberPathType(a) {
this.m = a;
this.g("MemberPathType");
}
get memberPath() {
return this.l;
}
set memberPath(a) {
this.l = a;
this.g("MemberPath");
}
}
SeriesMatcherDescription.$t = /*@__PURE__*/ markType(SeriesMatcherDescription, 'SeriesMatcherDescription', Description.$);
SeriesMatcherDescription.__marshalByValue = true;
SeriesMatcherDescription.__marshalByValueAlias = "SeriesMatcher";
return SeriesMatcherDescription;
})();