panel.setRightWeights(1.0, 1.0).setRightFill(Fill.BOTH);
panel.addRow(new JLabel("Member of"), BorderLayoutBuilder.fillWith(groupList));
panel.setRightFill(Fill.NONE).setRightWeights(0.0, 0.0);
BoxBuilder buttons = BoxBuilder.horizontal();
buttons.setUseSmallSizedIconsForActions(true);
buttons.addAllWithSpace(10, addToGroupAction, removeFromGroupAction);
panel.addRow(null, InvisiblePanel.newPanel(buttons));
return new BorderLayoutBuilder().north(panel).container();
}
private void layoutPasswordButton(TwoColumnPanel panel) {