igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
107 lines (106 loc) • 3.36 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 DashboardTileCustomizationDescription = /*@__PURE__*/ (() => {
class DashboardTileCustomizationDescription extends Description {
constructor() {
super();
this.y = null;
this.z = null;
this.aa = null;
this.k = false;
this.m = false;
this.l = false;
this.n = false;
this.s = 0;
this.u = 0;
this.t = 0;
}
get_type() {
return "DashboardTileCustomization";
}
get type() {
return this.get_type();
}
get matchType() {
return this.y;
}
set matchType(a) {
this.y = a;
this.j("MatchType");
}
get propertyName() {
return this.z;
}
set propertyName(a) {
this.z = a;
this.j("PropertyName");
}
get propertyValueRef() {
return this.aa;
}
set propertyValueRef(a) {
this.aa = a;
this.j("PropertyValueRef");
}
get isCollectionInsertionAtEnd() {
return this.k;
}
set isCollectionInsertionAtEnd(a) {
this.k = a;
this.j("IsCollectionInsertionAtEnd");
}
get isCollectionInsertionAtStart() {
return this.m;
}
set isCollectionInsertionAtStart(a) {
this.m = a;
this.j("IsCollectionInsertionAtStart");
}
get isCollectionInsertionAtIndex() {
return this.l;
}
set isCollectionInsertionAtIndex(a) {
this.l = a;
this.j("IsCollectionInsertionAtIndex");
}
get isCollectionRemovaltIndex() {
return this.n;
}
set isCollectionRemovaltIndex(a) {
this.n = a;
this.j("IsCollectionRemovaltIndex");
}
get collectionIndex() {
return this.s;
}
set collectionIndex(a) {
this.s = a;
this.j("CollectionIndex");
}
get order() {
return this.u;
}
set order(a) {
this.u = a;
this.j("Order");
}
get matchParentIndex() {
return this.t;
}
set matchParentIndex(a) {
this.t = a;
this.j("MatchParentIndex");
}
}
DashboardTileCustomizationDescription.$t = markType(DashboardTileCustomizationDescription, 'DashboardTileCustomizationDescription', Description.$);
return DashboardTileCustomizationDescription;
})();