JPanel ret = new JPanel(new GridBagLayout());
GridBagConstraints gbc;
// i18n[TableExportCsvDlg.formatCSV=Export CSV file]
radFormatCSV = new JRadioButton(s_stringMgr.getString("TableExportCsvDlg.formatCSV"));
gbc = new GridBagConstraints(0, 0, 1, 1, 0, 0, GridBagConstraints.WEST, GridBagConstraints.NONE, new Insets(0, 0, 0, 5), 0, 0);
ret.add(radFormatCSV, gbc);
// i18n[TableExportCsvDlg.formatXLS=Export MS Excel (XLS) file]
radFormatXLS = new JRadioButton(s_stringMgr.getString("TableExportCsvDlg.formatXLS"));
gbc = new GridBagConstraints(1, 0, 1, 1, 0, 0, GridBagConstraints.WEST, GridBagConstraints.NONE, new Insets(0, 0, 0, 0), 0, 0);
ret.add(radFormatXLS, gbc);
// i18n[TableExportCsvDlg.formatXML=Export XML file]
radFormatXML = new JRadioButton(s_stringMgr.getString("TableExportCsvDlg.formatXML"));
gbc = new GridBagConstraints(2, 0, 1, 1, 0, 0, GridBagConstraints.WEST, GridBagConstraints.NONE, new Insets(0, 0, 0, 0), 0, 0);
ret.add(radFormatXML, gbc);
gbc = new GridBagConstraints(2, 0, 1, 1, 1, 0, GridBagConstraints.WEST, GridBagConstraints.HORIZONTAL, new Insets(0, 0, 0, 0), 0, 0);
ret.add(new JPanel(), gbc);