igniteui-react-core
Version:
Ignite UI React Core.
66 lines (65 loc) • 2.32 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 { ToolActionInfoDescription } from "./ToolActionInfoDescription";
import { markType } from "./type";
/**
* @hidden
*/
export let ToolActionCheckboxListInfoDescription = /*@__PURE__*/ (() => {
class ToolActionCheckboxListInfoDescription extends ToolActionInfoDescription {
get_type() {
return "ToolActionCheckboxListInfo";
}
constructor() {
super();
this.bt = null;
this.bs = null;
this.bu = null;
this.bp = false;
this.bm = null;
}
get dataSourceRef() {
return this.bt;
}
set dataSourceRef(a) {
this.bt = a;
this.g("DataSourceRef");
}
get dataMemberPath() {
return this.bs;
}
set dataMemberPath(a) {
this.bs = a;
this.g("DataMemberPath");
}
get selectedMemberPath() {
return this.bu;
}
set selectedMemberPath(a) {
this.bu = a;
this.g("SelectedMemberPath");
}
get showSelectAll() {
return this.bp;
}
set showSelectAll(a) {
this.bp = a;
this.g("ShowSelectAll");
}
get primaryKey() {
return this.bm;
}
set primaryKey(a) {
this.bm = a;
this.g("PrimaryKey");
}
}
ToolActionCheckboxListInfoDescription.$t = /*@__PURE__*/ markType(ToolActionCheckboxListInfoDescription, 'ToolActionCheckboxListInfoDescription', ToolActionInfoDescription.$);
ToolActionCheckboxListInfoDescription.__marshalByValue1 = true;
ToolActionCheckboxListInfoDescription.__marshalByValueAlias1 = "ToolActionCheckboxListInfo";
return ToolActionCheckboxListInfoDescription;
})();