igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
61 lines (60 loc) • 1.97 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 {
constructor() {
super();
this.q = null;
this.l = 0;
this.p = null;
this.o = null;
}
get_type() {
return "SeriesMatcher";
}
get type() {
return this.get_type();
}
get title() {
return this.q;
}
set title(a) {
this.q = a;
this.j("Title");
}
get index() {
return this.l;
}
set index(a) {
this.l = a;
this.j("Index");
}
get memberPathType() {
return this.p;
}
set memberPathType(a) {
this.p = a;
this.j("MemberPathType");
}
get memberPath() {
return this.o;
}
set memberPath(a) {
this.o = a;
this.j("MemberPath");
}
}
SeriesMatcherDescription.$t = markType(SeriesMatcherDescription, 'SeriesMatcherDescription', Description.$);
SeriesMatcherDescription.__marshalByValue = true;
SeriesMatcherDescription.__marshalByValueAlias = "SeriesMatcher";
return SeriesMatcherDescription;
})();