customizeAddressBookCheckBox = new JCheckBox();
settingMediator.add(Settings.CUSTOMIZE_ADDRESS_BOOK_FILENAME, customizeAddressBookCheckBox);
builder.append(customizeAddressBookCheckBox, 5);
builder.nextLine();
addressBookPathFileChooserPanel = new FileChooserPanel(Constants.DEFAULT_COLUMNS);
settingMediator.add(Settings.ADDRESS_BOOK_FILENAME, addressBookPathFileChooserPanel.getTextField());
addressBookPathFileChooserPanel.setDialogParent(this);
builder.append(addressBookPathFileChooserPanel, 5);
builder.nextLine();
customizeAddressBookCheckBox.addItemListener(new EnableListener(addressBookPathFileChooserPanel));
builder.appendSeparator(i18n.tr("Cover"));
internalCoverRadionButton = new JRadioButton();
internalCoverRadionButton.setSelected(true);
builder.append(internalCoverRadionButton, 5);
builder.nextLine();
externalCoverRadionButton = new JRadioButton();
externalCoverPathFileChooserPanel = new FileChooserPanel(Constants.DEFAULT_COLUMNS);
externalCoverPathFileChooserPanel.setEnabled(false);
externalCoverPathFileChooserPanel.setDialogParent(this);
builder.append(externalCoverRadionButton, 5);
builder.nextLine();