blob: 66b1b1f533aac21ea652effc08360588dc9f9047 [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 v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Florian Pirchner - Initial implementation
*/
package org.eclipse.osbp.runtime.web.ecview.presentation.vaadin.internal.data;
public class EnumOptionBean {
private final Enum<?> enumx;
private final String description;
private final 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;
}
}