blob: a85b6aaf34cb6f0a4b196e4e90bcd80c2d630c8c [file] [log] [blame]
/**
* Copyright (c) 2011, 2015 - Lunifera GmbH (Gross Enzersdorf, Austria), Loetz GmbH&Co.KG (69115 Heidelberg, Germany)
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Florian Pirchner - Initial implementation
*/
package org.eclipse.osbp.runtime.web.ecview.presentation.vaadin.internal.data;
public class EnumOptionBean {
private final Enum<?> enumx;
private String description;
private String imagePath;
public EnumOptionBean(Enum<?> enumx, String description, String imagePath) {
super();
this.enumx = enumx;
this.description = description;
this.imagePath = imagePath;
}
/**
* @return the enumx
*/
public Enum<?> getEnumx() {
return enumx;
}
/**
* @return the description
*/
public String getDescription() {
return description;
}
/**
* @return the imagePath
*/
public String getImagePath() {
return imagePath;
}
public void setDescription(String description) {
this.description = description;
}
public void setImagePath(String imagePath) {
this.imagePath = imagePath;
}
}