vre-definition/src/main/java/org/gcube/portlets/admin/vredefinition/client/model/WizardStepModel.java

40 lines
682 B
Java

package org.gcube.portlets.admin.vredefinition.client.model;
import com.extjs.gxt.ui.client.data.BaseTreeModel;
public class WizardStepModel extends BaseTreeModel {
private WizardStepType type;
public WizardStepModel(String name, String icon, WizardStepType type) {
setName(name);
setType(type);
setIcon(icon);
}
public String getName() {
return get("name");
}
public void setName(String name) {
set("name", name);
}
public WizardStepType getType() {
return type;
}
public void setType(WizardStepType type) {
this.type = type;
}
public void setIcon(String icon) {
set("icon",icon);
}
public String getIcon() {
return get("icon");
}
}