org.ikasan.designer.ItemPallet Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ikasan-designer Show documentation
Show all versions of ikasan-designer Show documentation
Integration of vis.js library for Ikasan platform
The newest version!
package org.ikasan.designer;
import com.vaadin.flow.component.Component;
public class ItemPallet {
private String summary;
private Component pallet;
public ItemPallet(String summary, Component pallet) {
this.summary = summary;
this.pallet = pallet;
}
public String getSummary() {
return summary;
}
public Component getPallet() {
return pallet;
}
}