use of org.eclipse.che.ide.extension.machine.client.perspective.widgets.recipe.editor.button.EditorButtonWidget in project che by eclipse.
the class RecipeEditorViewImpl method createButton.
@NotNull
private EditorButtonWidget createButton(@NotNull String title, @NotNull EditorButtonWidget.ActionDelegate delegate, @NotNull EditorButtonWidgetImpl.Background background) {
EditorButtonWidget button = widgetFactory.createEditorButton(title, background);
button.setDelegate(delegate);
buttonsPanel.add(button);
return button;
}
Aggregations