applyButton.getElement().setId(asId(PREFIX, getClass(), "_Apply"));
tools.addToolButtonRight(applyButton);
ClickHandler rollbackHandler = new ClickHandler() {
@Override
public void onClick(ClickEvent event) {
final PatchInfo currentSelection = table.getCurrentSelection();
if (currentSelection != null) {
presenter.launchRollbackWizard(currentSelection);
}
}
};