use of org.gwtbootstrap3.client.ui.constants.ButtonType in project kie-wb-common by kiegroup.
the class EditContributorsPopUpView method button.
private Button button(final String text, final Command command, final ButtonType type) {
Button button = new Button(text, event -> command.execute());
button.setType(type);
return button;
}
use of org.gwtbootstrap3.client.ui.constants.ButtonType in project kie-wb-common by kiegroup.
the class AddProjectPopUpView method button.
private Button button(final String text, final Command command, final ButtonType type) {
Button button = new Button(text, event -> command.execute());
button.setType(type);
return button;
}
Aggregations