* @return a right aligned button bar with the given buttons
*/
public static LayoutPanel buildHelpBar(Button help, Button[] buttons) {
ButtonBarBuilder builder = new ButtonBarBuilder();
builder.addGridded(help);
builder.addRelatedGap();
builder.addGlue();
builder.addGriddedButtons(buttons);
return builder.getPanel();
}