use of org.eclipse.che.ide.workspace.create.recipewidget.RecipeWidget in project che by eclipse.
the class CreateWorkspaceViewImpl method addRecipesToPanel.
private void addRecipesToPanel(List<RecipeDescriptor> recipes) {
tagsPanel.clear();
for (RecipeDescriptor descriptor : recipes) {
RecipeWidget tag = tagFactory.create(descriptor);
tag.setDelegate(this);
tagsPanel.add(tag);
}
popupPanel.setWidget(tagsPanel);
}
Aggregations