* @param buttons an array of buttons to add
* @return a filled button bar with the given buttons
*/
public static JPanel buildGrowingBar(JButton... buttons) {
ButtonBarBuilder2 builder = new ButtonBarBuilder2();
builder.addGrowing(buttons);
return builder.getPanel();
}
// General Purpose Factory Methods: Right Aligned ***********************