/*********************************************************************** * This file is part of iDempiere ERP Open Source * * http://www.idempiere.org * * * * Copyright (C) Contributors * * * * This program is free software; you can redistribute it and/or * * modify it under the terms of the GNU General Public License * * as published by the Free Software Foundation; either version 2 * * of the License, or (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, write to the Free Software * * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, * * MA 02110-1301, USA. * * * * Contributors: * * - hengsin * **********************************************************************/ package org.adempiere.webui.apps; import org.zkoss.zul.DefaultTreeNode; import org.zkoss.zul.Treeitem; /** * Value object for AD_Menu. *
* Use by {@link GlobalSearch} and {@link MenuSearchController}. * @author hengsin */ public class MenuItem { private String label; private String description; private String image; /** report, process, workflow, form, info or window **/ private String type; /** Corresponding {@link Treeitem} or {@link DefaultTreeNode} **/ private Object data; /** * default constructor */ public MenuItem() { } /** * @return the label */ public String getLabel() { return label; } /** * @param label the label to set */ public void setLabel(String label) { this.label = label; } /** * @return the description */ public String getDescription() { return description; } /** * @param description the description to set */ public void setDescription(String description) { this.description = description; } /** * @return the image */ public String getImage() { return image; } /** * @param image the image to set */ public void setImage(String image) { this.image = image; } public void setData(Object data) { this.data = data; } public Object getData() { return data; } /** * @return the type */ public String getType() { return type; } /** * @param type the type to set */ public void setType(String type) { this.type = type; } @Override public String toString() { return label != null ? label : super.toString(); } }