txtPath = new JTextField();
btnBrowse = new JButton(UICaption.dialog_caption_browse);
selector = new JComboBox(new Object[] { UICaption.panel_caption_s,
UICaption.panel_caption_ns, UICaption.panel_caption_in_del,
UICaption.panel_caption_snp });
selector.addActionListener(new SelectAction(id));
selector.setSelectedIndex(id.intValue());
txtPath.setPreferredSize(Size.dialog_textfield_path);
btnBrowse.setPreferredSize(Size.dialog_button_browse);
btnBrowse.addActionListener(new BrowseAction(txtPath, JFileChooser.SAVE_DIALOG));
txtPath.getDocument().addDocumentListener(new EditAction(path));