super(name, selection);
}
@Override
protected void createDestinationGroup(Composite parent) {
UIPlugin plugin = UIPlugin.getInstance();
Group destinationGroup = new Group(parent, SWT.NONE);
GridLayout layout = new GridLayout();
destinationGroup.setLayout(layout);
destinationGroup.setLayoutData(new GridData(GridData.HORIZONTAL_ALIGN_FILL | GridData.GRAB_HORIZONTAL));
destinationGroup.setText(plugin.getString("_UI_Forge_Credentials_label"));
destinationGroup.setFont(parent.getFont());
Font font = destinationGroup.getFont();
Label loginLabel = new Label(destinationGroup, SWT.NONE);
loginLabel.setText(plugin.getString("_UI_Login_label"));
loginLabel.setFont(font);
loginField = new Text(destinationGroup, SWT.BORDER | SWT.READ_ONLY);
GridData data = new GridData(GridData.FILL_HORIZONTAL);
data.widthHint = SIZING_TEXT_FIELD_WIDTH;
loginField.setLayoutData(data);
loginField.setFont(font);
Label passwordLabel = new Label(destinationGroup, SWT.NONE);
passwordLabel.setText(plugin.getString("_UI_Password_label"));
passwordLabel.setFont(font);
passwordField = new Text(destinationGroup, SWT.BORDER | SWT.PASSWORD);
data = new GridData(GridData.FILL_HORIZONTAL);
data.widthHint = SIZING_TEXT_FIELD_WIDTH;