All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.morpheusdata.model.DashboardItem Maven / Gradle / Ivy

package com.morpheusdata.model;

public class DashboardItem extends MorpheusModel {

	
	protected DashboardItemType type;
	protected Integer itemRow;
	protected Integer itemColumn;
	protected String itemGroup;
	protected Integer groupRow;

	//filters
	//ui types
	//endpoints
	//scripts
	
	public DashboardItemType getType() {
		return type;
	}

	public void setDashboardId(DashboardItemType type) {
		markDirty("type", type);
		this.type = type;
	}

	public Integer getItemRow() {
		return itemRow;
	}

	public void setItemRow(Integer itemRow) {
		markDirty("itemRow", itemRow);
		this.itemRow = itemRow;
	}

	public Integer getItemColumn() {
		return itemColumn;
	}

	public void setItemColumn(Integer itemColumn) {
		markDirty("itemColumn", itemColumn);
		this.itemColumn = itemColumn;
	}

	public String getItemGroup() {
		return itemGroup;
	}

	public void setItemGroup(String itemGroup) {
		markDirty("itemGroup", itemGroup);
		this.itemGroup = itemGroup;
	}

	public Integer getGroupRow() {
		return groupRow;
	}

	public void setGroupRow(Integer groupRow) {
		markDirty("groupRow", groupRow);
		this.groupRow = groupRow;
	}

	public void setType(DashboardItemType type) {
		this.type = type;
		markDirty("type", type);
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy