GridBagConstraints constraints = new GridBagConstraints();
constraints.insets = new Insets(0, 0, 0, 10);
// constraints.anchor = GridBagConstraints.NORTHWEST;
String completeText = ResourceManager.getString("String_ChooseUninstallationType4");
PanelLabel completeComment = new PanelLabel(completeText, true);
if ( data.useRtl() ) { completeComment.setComponentOrientation(ComponentOrientation.RIGHT_TO_LEFT); }
String customText = ResourceManager.getString("String_ChooseUninstallationType5");
PanelLabel customComment = new PanelLabel(customText, true);
if ( data.useRtl() ) { customComment.setComponentOrientation(ComponentOrientation.RIGHT_TO_LEFT); }
ButtonGroup group = new ButtonGroup();
String completeButtonText = ResourceManager.getString("String_ChooseUninstallationType6");
complete = new JRadioButton(completeButtonText, true);