igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
139 lines (138 loc) • 3.83 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 ToolActionDescription = /*@__PURE__*/ (() => {
class ToolActionDescription extends Description {
constructor() {
super();
this.w = null;
this.q = null;
this.p = null;
this.n = null;
this.g = 0;
this.h = 0;
this.f = 0;
this.i = 0;
this.u = null;
this.t = null;
this.s = null;
this.r = null;
this.v = null;
this.x = null;
}
get_type() {
return "ToolAction";
}
get type() {
return this.get_type();
}
get parentId() {
return this.w;
}
set parentId(a) {
this.w = a;
this.e("ParentId");
}
get commandId() {
return this.q;
}
set commandId(a) {
this.q = a;
this.e("CommandId");
}
get commandArgument() {
return this.p;
}
set commandArgument(a) {
this.p = a;
this.e("CommandArgument");
}
get commandArgumentValue() {
return this.n;
}
set commandArgumentValue(a) {
this.n = a;
this.e("CommandArgumentValue");
}
get paddingLeft() {
return this.g;
}
set paddingLeft(a) {
this.g = a;
this.e("PaddingLeft");
}
get paddingRight() {
return this.h;
}
set paddingRight(a) {
this.h = a;
this.e("PaddingRight");
}
get paddingBottom() {
return this.f;
}
set paddingBottom(a) {
this.f = a;
this.e("PaddingBottom");
}
get paddingTop() {
return this.i;
}
set paddingTop(a) {
this.i = a;
this.e("PaddingTop");
}
get name() {
return this.u;
}
set name(a) {
this.u = a;
this.e("Name");
}
get label() {
return this.t;
}
set label(a) {
this.t = a;
this.e("Label");
}
get iconName() {
return this.s;
}
set iconName(a) {
this.s = a;
this.e("IconName");
}
get iconCollectionName() {
return this.r;
}
set iconCollectionName(a) {
this.r = a;
this.e("IconCollectionName");
}
get onCommandRef() {
return this.v;
}
set onCommandRef(a) {
this.v = a;
this.e("OnCommandRef");
}
get performedRef() {
return this.x;
}
set performedRef(a) {
this.x = a;
this.e("PerformedRef");
}
}
ToolActionDescription.$t = markType(ToolActionDescription, 'ToolActionDescription', Description.$);
return ToolActionDescription;
})();