}
// Builds the content pane
protected JComponent buildContent()
{
BBFormBuilder builder = new BBFormBuilder("7dlu, pref, 2dlu, pref:grow");
builder.append(lbWording, 4);
builder.setLeadingColumnOffset(1);
if (lbContext != null) builder.append(lbContext, 3);
if (lbHost != null) builder.append(lbHost, 3);
builder.setLeadingColumnOffset(1);
builder.appendUnrelatedComponentsGapRow(2);
builder.append(Strings.message("net.authentication.username"), 1, tfUsername, 1);
builder.append(Strings.message("net.authentication.password"), 1, tfPassword, 1);
builder.appendRelatedComponentsGapRow(2);
builder.append(chSave, 3);
builder.setLeadingColumnOffset(0);
builder.appendUnrelatedComponentsGapRow(2);
builder.append(buildButtonBar(), 4);
return builder.getPanel();
}